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