C:
char c = '\u5120';
printf("%c\n", c); // Output: 儠
JavaScript:
const char = '\u5120';
console.log(char); // Output: 儠
Java:
char c = '\u5120';
System.out.println(c); // Output: 儠
JSON:
{"text": "\u5120"} // Value: 儠
Python:
char = '\u5120'
print(char) # Output: 儠
Perl:
my $char = "\x{5120}";
print $char; # Output: 儠
PHP:
$char = "\x{5120}";
echo $char; // Output: 儠
Ruby:
char = "\u{5120}"
puts char # Output: 儠
Rust:
let c = '\u{5120}';
println!("{}", c); // Output: 儠
Go:
char := '\u5120'
fmt.Printf("%c\n", char) // Output: 儠
CSS:
/* CSS content property */
.element::before {
content: "\005120"; /* 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%A0
MD5:
1c9d7de8de9452f102b7a2226565e467
SHA1:
2825fb84a45321afa005ec1efa93f3d0c510ce1a
Base64:
5YSg