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