C:
char c = '\u100C';
printf("%c\n", c); // Output: ဌ
JavaScript:
const char = '\u100C';
console.log(char); // Output: ဌ
Java:
char c = '\u100C';
System.out.println(c); // Output: ဌ
JSON:
{"text": "\u100C"} // Value: ဌ
Python:
char = '\u100C'
print(char) # Output: ဌ
Perl:
my $char = "\x{100C}";
print $char; # Output: ဌ
PHP:
$char = "\x{100C}";
echo $char; // Output: ဌ
Ruby:
char = "\u{100C}"
puts char # Output: ဌ
Rust:
let c = '\u{100C}';
println!("{}", c); // Output: ဌ
Go:
char := '\u100C'
fmt.Printf("%c\n", char) // Output: ဌ
CSS:
/* CSS content property */
.element::before {
content: "\00100C"; /* 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%8C
MD5:
42fc5189b6d4d8fe1559e1e05d767005
SHA1:
4ac13461b7a1daf8290f1c392e9b073cd5b99c69
Base64:
4YCM