C:
char c = '\u1797';
printf("%c\n", c); // Output: ភ
JavaScript:
const char = '\u1797';
console.log(char); // Output: ភ
Java:
char c = '\u1797';
System.out.println(c); // Output: ភ
JSON:
{"text": "\u1797"} // Value: ភ
Python:
char = '\u1797'
print(char) # Output: ភ
Perl:
my $char = "\x{1797}";
print $char; # Output: ភ
PHP:
$char = "\x{1797}";
echo $char; // Output: ភ
Ruby:
char = "\u{1797}"
puts char # Output: ភ
Rust:
let c = '\u{1797}';
println!("{}", c); // Output: ភ
Go:
char := '\u1797'
fmt.Printf("%c\n", char) // Output: ភ
CSS:
/* CSS content property */
.element::before {
content: "\001797"; /* 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%97
MD5:
497bd80340f3416593488498beb8fc32
SHA1:
d881cd1a01841166414d94f9f0c73d6e437dda0f
Base64:
4Z6X