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