C:
char c = '\u1791';
printf("%c\n", c); // Output: ទ
JavaScript:
const char = '\u1791';
console.log(char); // Output: ទ
Java:
char c = '\u1791';
System.out.println(c); // Output: ទ
JSON:
{"text": "\u1791"} // Value: ទ
Python:
char = '\u1791'
print(char) # Output: ទ
Perl:
my $char = "\x{1791}";
print $char; # Output: ទ
PHP:
$char = "\x{1791}";
echo $char; // Output: ទ
Ruby:
char = "\u{1791}"
puts char # Output: ទ
Rust:
let c = '\u{1791}';
println!("{}", c); // Output: ទ
Go:
char := '\u1791'
fmt.Printf("%c\n", char) // Output: ទ
CSS:
/* CSS content property */
.element::before {
content: "\001791"; /* 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%91
MD5:
7bb6a01d15287fd9bd0536a2e1da55c8
SHA1:
7e3e2f26107bb1c048dac4c4018c3595a0985475
Base64:
4Z6R