C:
char c = '\u5128';
printf("%c\n", c); // Output: 儨
JavaScript:
const char = '\u5128';
console.log(char); // Output: 儨
Java:
char c = '\u5128';
System.out.println(c); // Output: 儨
JSON:
{"text": "\u5128"} // Value: 儨
Python:
char = '\u5128'
print(char) # Output: 儨
Perl:
my $char = "\x{5128}";
print $char; # Output: 儨
PHP:
$char = "\x{5128}";
echo $char; // Output: 儨
Ruby:
char = "\u{5128}"
puts char # Output: 儨
Rust:
let c = '\u{5128}';
println!("{}", c); // Output: 儨
Go:
char := '\u5128'
fmt.Printf("%c\n", char) // Output: 儨
CSS:
/* CSS content property */
.element::before {
content: "\005128"; /* 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%84%A8
MD5:
4bbde7ba5766225cc9f89db6ba3db6ce
SHA1:
53246f194c5e80f9f8fbc67bec0b453ee9fe26a0
Base64:
5YSo