C:
char c = '\u0E15';
printf("%c\n", c); // Output: ต
JavaScript:
const char = '\u0E15';
console.log(char); // Output: ต
Java:
char c = '\u0E15';
System.out.println(c); // Output: ต
JSON:
{"text": "\u0E15"} // Value: ต
Python:
char = '\u0E15'
print(char) # Output: ต
Perl:
my $char = "\x{0E15}";
print $char; # Output: ต
PHP:
$char = "\x{0E15}";
echo $char; // Output: ต
Ruby:
char = "\u{0E15}"
puts char # Output: ต
Rust:
let c = '\u{E15}';
println!("{}", c); // Output: ต
Go:
char := '\u0E15'
fmt.Printf("%c\n", char) // Output: ต
CSS:
/* CSS content property */
.element::before {
content: "\000E15"; /* 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=%E0%B8%95
MD5:
0bb94a862831d41b4d97e8572323e9e1
SHA1:
3343d673f63afff8eb4483496b79a6e492223f48
Base64:
4LiV