C:
char c = '\u1792';
printf("%c\n", c); // Output: ធ
JavaScript:
const char = '\u1792';
console.log(char); // Output: ធ
Java:
char c = '\u1792';
System.out.println(c); // Output: ធ
JSON:
{"text": "\u1792"} // Value: ធ
Python:
char = '\u1792'
print(char) # Output: ធ
Perl:
my $char = "\x{1792}";
print $char; # Output: ធ
PHP:
$char = "\x{1792}";
echo $char; // Output: ធ
Ruby:
char = "\u{1792}"
puts char # Output: ធ
Rust:
let c = '\u{1792}';
println!("{}", c); // Output: ធ
Go:
char := '\u1792'
fmt.Printf("%c\n", char) // Output: ធ
CSS:
/* CSS content property */
.element::before {
content: "\001792"; /* 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%92
MD5:
fffc0b9f42ae7bacea3436bd80ed18b3
SHA1:
2d851fd53599f630998327c3777662d16e576614
Base64:
4Z6S