C:
char c = '\u17C8';
printf("%c\n", c); // Output: ៈ
JavaScript:
const char = '\u17C8';
console.log(char); // Output: ៈ
Java:
char c = '\u17C8';
System.out.println(c); // Output: ៈ
JSON:
{"text": "\u17C8"} // Value: ៈ
Python:
char = '\u17C8'
print(char) # Output: ៈ
Perl:
my $char = "\x{17C8}";
print $char; # Output: ៈ
PHP:
$char = "\x{17C8}";
echo $char; // Output: ៈ
Ruby:
char = "\u{17C8}"
puts char # Output: ៈ
Rust:
let c = '\u{17C8}';
println!("{}", c); // Output: ៈ
Go:
char := '\u17C8'
fmt.Printf("%c\n", char) // Output: ៈ
CSS:
/* CSS content property */
.element::before {
content: "\0017C8"; /* 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%9F%88
MD5:
8dea8d269d21ad3db65a0491d52be654
SHA1:
97fdf3be040702d97502947f537be29d646ca5af
Base64:
4Z+I