C:
char c = '\u5116';
printf("%c\n", c); // Output: 儖
JavaScript:
const char = '\u5116';
console.log(char); // Output: 儖
Java:
char c = '\u5116';
System.out.println(c); // Output: 儖
JSON:
{"text": "\u5116"} // Value: 儖
Python:
char = '\u5116'
print(char) # Output: 儖
Perl:
my $char = "\x{5116}";
print $char; # Output: 儖
PHP:
$char = "\x{5116}";
echo $char; // Output: 儖
Ruby:
char = "\u{5116}"
puts char # Output: 儖
Rust:
let c = '\u{5116}';
println!("{}", c); // Output: 儖
Go:
char := '\u5116'
fmt.Printf("%c\n", char) // Output: 儖
CSS:
/* CSS content property */
.element::before {
content: "\005116"; /* 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%96
MD5:
b4e1e2265ac3c61aa077d8a68911af05
SHA1:
136f2562dba0ed478d6d65df01e3b8a4418f5798
Base64:
5YSW