Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9024849
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T06:07:39+00:00 2026-06-16T06:07:39+00:00

I’m trying to convert UTF-8 to base64 string. Example: I have abcdef== in UTF-8

  • 0

I’m trying to convert UTF-8 to base64 string.

Example: I have “abcdef==” in UTF-8. It’s in fact a “representation” of a base64 string.

How can I retrieve a “abcdef==” base64 string (note that I don’t want a “abcdef==” “translation” from UTF-8, I want to get a string encoded in base64 which is “abcdef==”).

EDIT
As my question seems to be unclear, here is a reformulation:

My byte array (let’s say I name it A) is represented by a base64 string. Converting A to base64 gives me “abcdef==”.

This string representation is sent through a socket in UTF-8 (note that the string representation is exactly the same in UTF-8 and base64). So I receive an UTF-8 message which contains “whatever/abcdef==/whatever” in UTF-8.

So I need to retrieve the base64 “abcedf==” string from this socket message in order to get A.

I hope this is more clear!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T06:07:41+00:00Added an answer on June 16, 2026 at 6:07 am

    It’s a little difficult to tell what you’re trying to achieve, but assuming you’re trying to get a Base64 string that when decoded is abcdef==, the following should work:

    byte[] bytes = Encoding.UTF8.GetBytes("abcdef==");
    string base64 = Convert.ToBase64String(bytes);
    Console.WriteLine(base64);
    

    This will output: YWJjZGVmPT0= which is abcdef== encoded in Base64.

    Edit:

    To decode a Base64 string, simply use Convert.FromBase64String(). E.g.

    string base64 = "YWJjZGVmPT0=";
    byte[] bytes = Convert.FromBase64String(base64);
    

    At this point, bytes will be a byte[] (not a string). If we know that the byte array represents a string in UTF8, then it can be converted back to the string form using:

    string str = Encoding.UTF8.GetString(bytes);
    Console.WriteLine(str);
    

    This will output the original input string, abcdef== in this case.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
I've got a string that has curly quotes in it. I'd like to replace
I have a small JavaScript validation script that validates inputs based on Regex. I
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
Does anyone know how can I replace this 2 symbol below from the string
i got an object with contents of html markup in it, for example: string
I'm trying to use string.replace('’','') to replace the dreaded weird single-quote character: ’ (aka

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.