C:
char c = '\u5490';
printf("%c\n", c); // Output: 咐
JavaScript:
const char = '\u5490';
console.log(char); // Output: 咐
Java:
char c = '\u5490';
System.out.println(c); // Output: 咐
JSON:
{"text": "\u5490"} // Value: 咐
Python:
char = '\u5490'
print(char) # Output: 咐
Perl:
my $char = "\x{5490}";
print $char; # Output: 咐
PHP:
$char = "\x{5490}";
echo $char; // Output: 咐
Ruby:
char = "\u{5490}"
puts char # Output: 咐
Rust:
let c = '\u{5490}';
println!("{}", c); // Output: 咐
Go:
char := '\u5490'
fmt.Printf("%c\n", char) // Output: 咐
CSS:
/* CSS content property */
.element::before {
content: "\005490"; /* 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%90
MD5:
95b00818b19f14b7362ee6f4ccc36e54
SHA1:
f76e1a6e98bbbd1505634561ad12d030adb4c0fb
Base64:
5ZKQ