C:
char c = '\u5480';
printf("%c\n", c); // Output: 咀
JavaScript:
const char = '\u5480';
console.log(char); // Output: 咀
Java:
char c = '\u5480';
System.out.println(c); // Output: 咀
JSON:
{"text": "\u5480"} // Value: 咀
Python:
char = '\u5480'
print(char) # Output: 咀
Perl:
my $char = "\x{5480}";
print $char; # Output: 咀
PHP:
$char = "\x{5480}";
echo $char; // Output: 咀
Ruby:
char = "\u{5480}"
puts char # Output: 咀
Rust:
let c = '\u{5480}';
println!("{}", c); // Output: 咀
Go:
char := '\u5480'
fmt.Printf("%c\n", char) // Output: 咀
CSS:
/* CSS content property */
.element::before {
content: "\005480"; /* 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%80
MD5:
ea1cf4d451c58b16d7d5bc6ff91cff27
SHA1:
aa4b4d71c805f3eed837d16bb91d3a5c2269568f
Base64:
5ZKA