BinaryEncoding.Base64

BinaryEncoding.Base64 (0) is an enumeration that specifies the type of binary encoding. It is a member of the BinaryEncoding.Type and specifies the use of base-64 encoding.

Examples

= Binary.FromText( "1011", BinaryEncoding.Base64 ) // Returns binary with Base64 Encoding
= Binary.From(     "1011", BinaryEncoding.Base64 ) // Returns binary with Base64 Encoding

// Turns binary into text with Base64 Encoding, returns "AQsCFg=="
= Binary.ToText( #binary( { 1, 11, 2, 22 } ), BinaryEncoding.Base64 )

Other related enumerations are:

Applies to

Here’s a list of functions that work with BinaryEncoding.Type:

BI Gorilla Youtube Channel

Last update: August 17, 2023 | Contribute » | Contributors: Rick de Groot
© 2023 BI Gorilla. All rights reserved. Content derived from Microsoft documentation is property of Microsoft Corp.