C:
char c = '\u1004';
printf("%c\n", c); // Output: င
JavaScript:
const char = '\u1004';
console.log(char); // Output: င
Java:
char c = '\u1004';
System.out.println(c); // Output: င
JSON:
{"text": "\u1004"} // Value: င
Python:
char = '\u1004'
print(char) # Output: င
Perl:
my $char = "\x{1004}";
print $char; # Output: င
PHP:
$char = "\x{1004}";
echo $char; // Output: င
Ruby:
char = "\u{1004}"
puts char # Output: င
Rust:
let c = '\u{1004}';
println!("{}", c); // Output: င
Go:
char := '\u1004'
fmt.Printf("%c\n", char) // Output: င
CSS:
/* CSS content property */
.element::before {
content: "\001004"; /* 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%84
MD5:
591166f9757d2b1b6f8e22f92dd3287e
SHA1:
4f6260f660c61d33856e3c7b6baa01606c180abb
Base64:
4YCE