C:
char c = '\u1009';
printf("%c\n", c); // Output: ဉ
JavaScript:
const char = '\u1009';
console.log(char); // Output: ဉ
Java:
char c = '\u1009';
System.out.println(c); // Output: ဉ
JSON:
{"text": "\u1009"} // Value: ဉ
Python:
char = '\u1009'
print(char) # Output: ဉ
Perl:
my $char = "\x{1009}";
print $char; # Output: ဉ
PHP:
$char = "\x{1009}";
echo $char; // Output: ဉ
Ruby:
char = "\u{1009}"
puts char # Output: ဉ
Rust:
let c = '\u{1009}';
println!("{}", c); // Output: ဉ
Go:
char := '\u1009'
fmt.Printf("%c\n", char) // Output: ဉ
CSS:
/* CSS content property */
.element::before {
content: "\001009"; /* 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%89
MD5:
468326fed8b3b8bc3637db370dd57c0f
SHA1:
c9d5c3b29128039616ffe3a76c41352e9ac1a6e5
Base64:
4YCJ