C:
char c = '\u17A6';
printf("%c\n", c); // Output: ឦ
JavaScript:
const char = '\u17A6';
console.log(char); // Output: ឦ
Java:
char c = '\u17A6';
System.out.println(c); // Output: ឦ
JSON:
{"text": "\u17A6"} // Value: ឦ
Python:
char = '\u17A6'
print(char) # Output: ឦ
Perl:
my $char = "\x{17A6}";
print $char; # Output: ឦ
PHP:
$char = "\x{17A6}";
echo $char; // Output: ឦ
Ruby:
char = "\u{17A6}"
puts char # Output: ឦ
Rust:
let c = '\u{17A6}';
println!("{}", c); // Output: ឦ
Go:
char := '\u17A6'
fmt.Printf("%c\n", char) // Output: ឦ
CSS:
/* CSS content property */
.element::before {
content: "\0017A6"; /* 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%A6
MD5:
11e4f4e480d934687eccf265cf40e95f
SHA1:
aab04916b7e0bf9e10d651803b32928a3248c676
Base64:
4Z6m