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