C:
char c = '\u1798';
printf("%c\n", c); // Output: ម
JavaScript:
const char = '\u1798';
console.log(char); // Output: ម
Java:
char c = '\u1798';
System.out.println(c); // Output: ម
JSON:
{"text": "\u1798"} // Value: ម
Python:
char = '\u1798'
print(char) # Output: ម
Perl:
my $char = "\x{1798}";
print $char; # Output: ម
PHP:
$char = "\x{1798}";
echo $char; // Output: ម
Ruby:
char = "\u{1798}"
puts char # Output: ម
Rust:
let c = '\u{1798}';
println!("{}", c); // Output: ម
Go:
char := '\u1798'
fmt.Printf("%c\n", char) // Output: ម
CSS:
/* CSS content property */
.element::before {
content: "\001798"; /* 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%98
MD5:
b8b5f0249ce6ff6902122c0000e93241
SHA1:
d04322c9d75aea5fd9a2b07506d54bde25031a96
Base64:
4Z6Y