C:
char c = '\u1794';
printf("%c\n", c); // Output: ប
JavaScript:
const char = '\u1794';
console.log(char); // Output: ប
Java:
char c = '\u1794';
System.out.println(c); // Output: ប
JSON:
{"text": "\u1794"} // Value: ប
Python:
char = '\u1794'
print(char) # Output: ប
Perl:
my $char = "\x{1794}";
print $char; # Output: ប
PHP:
$char = "\x{1794}";
echo $char; // Output: ប
Ruby:
char = "\u{1794}"
puts char # Output: ប
Rust:
let c = '\u{1794}';
println!("{}", c); // Output: ប
Go:
char := '\u1794'
fmt.Printf("%c\n", char) // Output: ប
CSS:
/* CSS content property */
.element::before {
content: "\001794"; /* 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%94
MD5:
fd66c2608ce7c96bfe119dc2e6542898
SHA1:
90a27a3446036b2af09d4c8670c58a4d2752f646
Base64:
4Z6U