C:
char c = '\u5672';
printf("%c\n", c); // Output: 噲
JavaScript:
const char = '\u5672';
console.log(char); // Output: 噲
Java:
char c = '\u5672';
System.out.println(c); // Output: 噲
JSON:
{"text": "\u5672"} // Value: 噲
Python:
char = '\u5672'
print(char) # Output: 噲
Perl:
my $char = "\x{5672}";
print $char; # Output: 噲
PHP:
$char = "\x{5672}";
echo $char; // Output: 噲
Ruby:
char = "\u{5672}"
puts char # Output: 噲
Rust:
let c = '\u{5672}';
println!("{}", c); // Output: 噲
Go:
char := '\u5672'
fmt.Printf("%c\n", char) // Output: 噲
CSS:
/* CSS content property */
.element::before {
content: "\005672"; /* 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%99%B2
MD5:
6b8d2d5cc0beec58fbb8f5931abaae9d
SHA1:
d2c1ffe458302e1c156338fe9a356e3914bafbdc
Base64:
5Zmy