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