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