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