C:
char c = '\u1016';
printf("%c\n", c); // Output: ဖ
JavaScript:
const char = '\u1016';
console.log(char); // Output: ဖ
Java:
char c = '\u1016';
System.out.println(c); // Output: ဖ
JSON:
{"text": "\u1016"} // Value: ဖ
Python:
char = '\u1016'
print(char) # Output: ဖ
Perl:
my $char = "\x{1016}";
print $char; # Output: ဖ
PHP:
$char = "\x{1016}";
echo $char; // Output: ဖ
Ruby:
char = "\u{1016}"
puts char # Output: ဖ
Rust:
let c = '\u{1016}';
println!("{}", c); // Output: ဖ
Go:
char := '\u1016'
fmt.Printf("%c\n", char) // Output: ဖ
CSS:
/* CSS content property */
.element::before {
content: "\001016"; /* 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%96
MD5:
aa16437a984f84b738c1f0e70745df1e
SHA1:
2c6a2eefc1ea665e452ab2557533e70015eedb7e
Base64:
4YCW