C:
char c = '\u7327';
printf("%c\n", c); // Output: 猧
JavaScript:
const char = '\u7327';
console.log(char); // Output: 猧
Java:
char c = '\u7327';
System.out.println(c); // Output: 猧
JSON:
{"text": "\u7327"} // Value: 猧
Python:
char = '\u7327'
print(char) # Output: 猧
Perl:
my $char = "\x{7327}";
print $char; # Output: 猧
PHP:
$char = "\x{7327}";
echo $char; // Output: 猧
Ruby:
char = "\u{7327}"
puts char # Output: 猧
Rust:
let c = '\u{7327}';
println!("{}", c); // Output: 猧
Go:
char := '\u7327'
fmt.Printf("%c\n", char) // Output: 猧
CSS:
/* CSS content property */
.element::before {
content: "\007327"; /* 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=%E7%8C%A7
MD5:
e831674cd1cf8311f61f756652c155d7
SHA1:
ad3a8825ae1da71dc797b8764ee0183d33eae78a
Base64:
54yn