C:
char c = '\u5333';
printf("%c\n", c); // Output: 匳
JavaScript:
const char = '\u5333';
console.log(char); // Output: 匳
Java:
char c = '\u5333';
System.out.println(c); // Output: 匳
JSON:
{"text": "\u5333"} // Value: 匳
Python:
char = '\u5333'
print(char) # Output: 匳
Perl:
my $char = "\x{5333}";
print $char; # Output: 匳
PHP:
$char = "\x{5333}";
echo $char; // Output: 匳
Ruby:
char = "\u{5333}"
puts char # Output: 匳
Rust:
let c = '\u{5333}';
println!("{}", c); // Output: 匳
Go:
char := '\u5333'
fmt.Printf("%c\n", char) // Output: 匳
CSS:
/* CSS content property */
.element::before {
content: "\005333"; /* 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%8C%B3
MD5:
de61e5a478cf1a211607ba6a9f65df22
SHA1:
2810d42ef34259bc428deb275545cd29a273a131
Base64:
5Yyz