C:
char c = '\u1788';
printf("%c\n", c); // Output: ឈ
JavaScript:
const char = '\u1788';
console.log(char); // Output: ឈ
Java:
char c = '\u1788';
System.out.println(c); // Output: ឈ
JSON:
{"text": "\u1788"} // Value: ឈ
Python:
char = '\u1788'
print(char) # Output: ឈ
Perl:
my $char = "\x{1788}";
print $char; # Output: ឈ
PHP:
$char = "\x{1788}";
echo $char; // Output: ឈ
Ruby:
char = "\u{1788}"
puts char # Output: ឈ
Rust:
let c = '\u{1788}';
println!("{}", c); // Output: ឈ
Go:
char := '\u1788'
fmt.Printf("%c\n", char) // Output: ឈ
CSS:
/* CSS content property */
.element::before {
content: "\001788"; /* 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%9E%88
MD5:
402be5c940db0ab5a450e8497c444fd5
SHA1:
1cde55f3d1a6a70465b1ac02f1e2f79318a36ead
Base64:
4Z6I