C:
char c = '\u5122';
printf("%c\n", c); // Output: 儢
JavaScript:
const char = '\u5122';
console.log(char); // Output: 儢
Java:
char c = '\u5122';
System.out.println(c); // Output: 儢
JSON:
{"text": "\u5122"} // Value: 儢
Python:
char = '\u5122'
print(char) # Output: 儢
Perl:
my $char = "\x{5122}";
print $char; # Output: 儢
PHP:
$char = "\x{5122}";
echo $char; // Output: 儢
Ruby:
char = "\u{5122}"
puts char # Output: 儢
Rust:
let c = '\u{5122}';
println!("{}", c); // Output: 儢
Go:
char := '\u5122'
fmt.Printf("%c\n", char) // Output: 儢
CSS:
/* CSS content property */
.element::before {
content: "\005122"; /* 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%A2
MD5:
1176cb555f6a011498cfb65777920f61
SHA1:
2f0a85067bfc99a4326010ccf5b44fabf5fc7860
Base64:
5YSi