C:
char c = '\u1001';
printf("%c\n", c); // Output: ခ
JavaScript:
const char = '\u1001';
console.log(char); // Output: ခ
Java:
char c = '\u1001';
System.out.println(c); // Output: ခ
JSON:
{"text": "\u1001"} // Value: ခ
Python:
char = '\u1001'
print(char) # Output: ခ
Perl:
my $char = "\x{1001}";
print $char; # Output: ခ
PHP:
$char = "\x{1001}";
echo $char; // Output: ခ
Ruby:
char = "\u{1001}"
puts char # Output: ခ
Rust:
let c = '\u{1001}';
println!("{}", c); // Output: ခ
Go:
char := '\u1001'
fmt.Printf("%c\n", char) // Output: ခ
CSS:
/* CSS content property */
.element::before {
content: "\001001"; /* 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%81
MD5:
84f2839424aebd93988bcbc64aa37889
SHA1:
03be4ecfc7eeb214058d0e732343b36622b89a4f
Base64:
4YCB