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