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