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