C:
char c = '\u5646';
printf("%c\n", c); // Output: 噆
JavaScript:
const char = '\u5646';
console.log(char); // Output: 噆
Java:
char c = '\u5646';
System.out.println(c); // Output: 噆
JSON:
{"text": "\u5646"} // Value: 噆
Python:
char = '\u5646'
print(char) # Output: 噆
Perl:
my $char = "\x{5646}";
print $char; # Output: 噆
PHP:
$char = "\x{5646}";
echo $char; // Output: 噆
Ruby:
char = "\u{5646}"
puts char # Output: 噆
Rust:
let c = '\u{5646}';
println!("{}", c); // Output: 噆
Go:
char := '\u5646'
fmt.Printf("%c\n", char) // Output: 噆
CSS:
/* CSS content property */
.element::before {
content: "\005646"; /* 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%86
MD5:
515d09e44f58e3c1b2e495d1c9f03279
SHA1:
b4ca35f350bf5f1d9a20972cfb5cdb944270eb07
Base64:
5ZmG