C:
char c = '\u54AC';
printf("%c\n", c); // Output: 咬
JavaScript:
const char = '\u54AC';
console.log(char); // Output: 咬
Java:
char c = '\u54AC';
System.out.println(c); // Output: 咬
JSON:
{"text": "\u54AC"} // Value: 咬
Python:
char = '\u54AC'
print(char) # Output: 咬
Perl:
my $char = "\x{54AC}";
print $char; # Output: 咬
PHP:
$char = "\x{54AC}";
echo $char; // Output: 咬
Ruby:
char = "\u{54AC}"
puts char # Output: 咬
Rust:
let c = '\u{54AC}';
println!("{}", c); // Output: 咬
Go:
char := '\u54AC'
fmt.Printf("%c\n", char) // Output: 咬
CSS:
/* CSS content property */
.element::before {
content: "\0054AC"; /* 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=%E5%92%AC
MD5:
b78a0e49feb1aea4e0d7b5f7b8320113
SHA1:
b6bdac54fa39dcfa00914b39e8136bc3d51558eb
Base64:
5ZKs