C:
char c = '\u8C93';
printf("%c\n", c); // Output: 貓
JavaScript:
const char = '\u8C93';
console.log(char); // Output: 貓
Java:
char c = '\u8C93';
System.out.println(c); // Output: 貓
JSON:
{"text": "\u8C93"} // Value: 貓
Python:
char = '\u8C93'
print(char) # Output: 貓
Perl:
my $char = "\x{8C93}";
print $char; # Output: 貓
PHP:
$char = "\x{8C93}";
echo $char; // Output: 貓
Ruby:
char = "\u{8C93}"
puts char # Output: 貓
Rust:
let c = '\u{8C93}';
println!("{}", c); // Output: 貓
Go:
char := '\u8C93'
fmt.Printf("%c\n", char) // Output: 貓
CSS:
/* CSS content property */
.element::before {
content: "\008C93"; /* 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=%E8%B2%93
MD5:
f984737f35c3c87ed54cb25f9c19ea19
SHA1:
043c21967a1a8e6e8a28252b8302d4f2c17c18a5
Base64:
6LKT