How do I encode and decode a base64 string?

Kevin Driedger
  1. How do I return a base64 encoded string given a string?

  2. How do I decode a base64 encoded string into a string?

Kevin Driedger

Encode

public static string Base64Encode(string plainText) {
  var plainTextBytes = System.Text.Encoding.UTF8.GetBytes(plainText);
  return System.Convert.ToBase64String(plainTextBytes);
}

Decode

public static string Base64Decode(string base64EncodedData) {
  var base64EncodedBytes = System.Convert.FromBase64String(base64EncodedData);
  return System.Text.Encoding.UTF8.GetString(base64EncodedBytes);
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

Base64 Java encode and decode a string

From Java

How can I encode a string to Base64 in Swift?

From Dev

How do I decode base64 encoded lines in linux?

From Dev

How can I base64_encode and base64_decode string with html tags?

From Dev

How to (base64) encode a protobuf as a String

From Java

How to Convert Pdf to base64 and Encode / Decode

From Dev

How to Convert Pdf to base64 and Encode / Decode

From Dev

Base64: how to encode / decode the entire HTML code of a page

From Dev

How do I get the base64 string in the base64 object?

From Dev

Decode file to stream, from base64 encoded string. How to do that?

From Dev

How do I get external image and encode it to base64 on client WebApp?

From Dev

How can I decode a base64 string from the command line?

From Dev

How can I decode a base64 string from the command line?

From Dev

string base64_encode/decode fails?

From Java

How to encode and decode Base64 and Base64Url in Flutter / Dart

From Dev

BASE64 Encode and Decode is not working

From Dev

base64 encode in python, decode in javascript

From Dev

base64 decode/encode inconsistency

From Java

How can you encode a string to Base64 in JavaScript?

From Java

NodeJS: How to decode base64 encoded string back to binary?

From Dev

How to decode a Base64 string in Scala or Java?

From Dev

how to decode base64 string to NSString in ios?

From Dev

How to decode base64 string as HTML content in XSLT?

From Dev

how to decode an encoded image string using base64

From Dev

How to decode base64 String directly to binary audio format

From Dev

how to decode base64 string to NSString in ios?

From Dev

How to decode base64 string as HTML content in XSLT?

From Dev

How to decode Base64 string to text in PHP?

From Dev

how to decode an encoded image string using base64

Related Related

  1. 1

    Base64 Java encode and decode a string

  2. 2

    How can I encode a string to Base64 in Swift?

  3. 3

    How do I decode base64 encoded lines in linux?

  4. 4

    How can I base64_encode and base64_decode string with html tags?

  5. 5

    How to (base64) encode a protobuf as a String

  6. 6

    How to Convert Pdf to base64 and Encode / Decode

  7. 7

    How to Convert Pdf to base64 and Encode / Decode

  8. 8

    Base64: how to encode / decode the entire HTML code of a page

  9. 9

    How do I get the base64 string in the base64 object?

  10. 10

    Decode file to stream, from base64 encoded string. How to do that?

  11. 11

    How do I get external image and encode it to base64 on client WebApp?

  12. 12

    How can I decode a base64 string from the command line?

  13. 13

    How can I decode a base64 string from the command line?

  14. 14

    string base64_encode/decode fails?

  15. 15

    How to encode and decode Base64 and Base64Url in Flutter / Dart

  16. 16

    BASE64 Encode and Decode is not working

  17. 17

    base64 encode in python, decode in javascript

  18. 18

    base64 decode/encode inconsistency

  19. 19

    How can you encode a string to Base64 in JavaScript?

  20. 20

    NodeJS: How to decode base64 encoded string back to binary?

  21. 21

    How to decode a Base64 string in Scala or Java?

  22. 22

    how to decode base64 string to NSString in ios?

  23. 23

    How to decode base64 string as HTML content in XSLT?

  24. 24

    how to decode an encoded image string using base64

  25. 25

    How to decode base64 String directly to binary audio format

  26. 26

    how to decode base64 string to NSString in ios?

  27. 27

    How to decode base64 string as HTML content in XSLT?

  28. 28

    How to decode Base64 string to text in PHP?

  29. 29

    how to decode an encoded image string using base64

HotTag

Archive