C:
char c = '\u5658';
printf("%c\n", c); // Output: 噘
JavaScript:
const char = '\u5658';
console.log(char); // Output: 噘
Java:
char c = '\u5658';
System.out.println(c); // Output: 噘
JSON:
{"text": "\u5658"} // Value: 噘
Python:
char = '\u5658'
print(char) # Output: 噘
Perl:
my $char = "\x{5658}";
print $char; # Output: 噘
PHP:
$char = "\x{5658}";
echo $char; // Output: 噘
Ruby:
char = "\u{5658}"
puts char # Output: 噘
Rust:
let c = '\u{5658}';
println!("{}", c); // Output: 噘
Go:
char := '\u5658'
fmt.Printf("%c\n", char) // Output: 噘
CSS:
/* CSS content property */
.element::before {
content: "\005658"; /* 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%98
MD5:
77eeb3b1e13b77c47fd2707739ab677f
SHA1:
17585e506852c8b32b2b0a66db06d9d50fac936b
Base64:
5ZmY