C:
char c = '\u1019';
printf("%c\n", c); // Output: မ
JavaScript:
const char = '\u1019';
console.log(char); // Output: မ
Java:
char c = '\u1019';
System.out.println(c); // Output: မ
JSON:
{"text": "\u1019"} // Value: မ
Python:
char = '\u1019'
print(char) # Output: မ
Perl:
my $char = "\x{1019}";
print $char; # Output: မ
PHP:
$char = "\x{1019}";
echo $char; // Output: မ
Ruby:
char = "\u{1019}"
puts char # Output: မ
Rust:
let c = '\u{1019}';
println!("{}", c); // Output: မ
Go:
char := '\u1019'
fmt.Printf("%c\n", char) // Output: မ
CSS:
/* CSS content property */
.element::before {
content: "\001019"; /* Display: မ */
}
HTML Decimal:
<p>HTML decimal: မ</p> <!-- Display: မ -->
HTML Hexadecimal:
<p>HTML hex: မ</p> <!-- Display: မ -->
URL Encoding:
// မ URL encoding
https://unicodefinder.com/search.php?query=%E1%80%99
MD5:
b8c978c9d07c48dab6efce9188b5a35d
SHA1:
9c60d4dad17d79d26fdbe0fc473c86b5bd519441
Base64:
4YCZ