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