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