C:
char c = '\u1033';
printf("%c\n", c); // Output: ဳ
JavaScript:
const char = '\u1033';
console.log(char); // Output: ဳ
Java:
char c = '\u1033';
System.out.println(c); // Output: ဳ
JSON:
{"text": "\u1033"} // Value: ဳ
Python:
char = '\u1033'
print(char) # Output: ဳ
Perl:
my $char = "\x{1033}";
print $char; # Output: ဳ
PHP:
$char = "\x{1033}";
echo $char; // Output: ဳ
Ruby:
char = "\u{1033}"
puts char # Output: ဳ
Rust:
let c = '\u{1033}';
println!("{}", c); // Output: ဳ
Go:
char := '\u1033'
fmt.Printf("%c\n", char) // Output: ဳ
CSS:
/* CSS content property */
.element::before {
content: "\001033"; /* 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%B3
MD5:
9f9b53dcd8cc4560cfdab1b63e134219
SHA1:
7e48fd350d0d9c16db38fce2fa3f91f38dae65d7
Base64:
4YCz