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