C:
char c = '\u5645';
printf("%c\n", c); // Output: 噅
JavaScript:
const char = '\u5645';
console.log(char); // Output: 噅
Java:
char c = '\u5645';
System.out.println(c); // Output: 噅
JSON:
{"text": "\u5645"} // Value: 噅
Python:
char = '\u5645'
print(char) # Output: 噅
Perl:
my $char = "\x{5645}";
print $char; # Output: 噅
PHP:
$char = "\x{5645}";
echo $char; // Output: 噅
Ruby:
char = "\u{5645}"
puts char # Output: 噅
Rust:
let c = '\u{5645}';
println!("{}", c); // Output: 噅
Go:
char := '\u5645'
fmt.Printf("%c\n", char) // Output: 噅
CSS:
/* CSS content property */
.element::before {
content: "\005645"; /* 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%85
MD5:
f0c7d3b14212ab2db2512cc81f53ff11
SHA1:
04d3f1adba738c41f14b75f7265c0a549c5ca6b5
Base64:
5ZmF