C:
char c = '\u5650';
printf("%c\n", c); // Output: 噐
JavaScript:
const char = '\u5650';
console.log(char); // Output: 噐
Java:
char c = '\u5650';
System.out.println(c); // Output: 噐
JSON:
{"text": "\u5650"} // Value: 噐
Python:
char = '\u5650'
print(char) # Output: 噐
Perl:
my $char = "\x{5650}";
print $char; # Output: 噐
PHP:
$char = "\x{5650}";
echo $char; // Output: 噐
Ruby:
char = "\u{5650}"
puts char # Output: 噐
Rust:
let c = '\u{5650}';
println!("{}", c); // Output: 噐
Go:
char := '\u5650'
fmt.Printf("%c\n", char) // Output: 噐
CSS:
/* CSS content property */
.element::before {
content: "\005650"; /* 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%90
MD5:
e6115ca9824512eb60f2459f733f39d5
SHA1:
9061202d20bd8ee483be35859ee663e2f9d2fbb8
Base64:
5ZmQ