C:
char c = '\u1000';
printf("%c\n", c); // Output: က
JavaScript:
const char = '\u1000';
console.log(char); // Output: က
Java:
char c = '\u1000';
System.out.println(c); // Output: က
JSON:
{"text": "\u1000"} // Value: က
Python:
char = '\u1000'
print(char) # Output: က
Perl:
my $char = "\x{1000}";
print $char; # Output: က
PHP:
$char = "\x{1000}";
echo $char; // Output: က
Ruby:
char = "\u{1000}"
puts char # Output: က
Rust:
let c = '\u{1000}';
println!("{}", c); // Output: က
Go:
char := '\u1000'
fmt.Printf("%c\n", char) // Output: က
CSS:
/* CSS content property */
.element::before {
content: "\001000"; /* 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%80%80
MD5:
c6ee4a93ade4a01db9f9d57f52e7098b
SHA1:
89096a131d1fd6cd57487da671c5e923c262c499
Base64:
4YCA