C:
char c = '\u5105';
printf("%c\n", c); // Output: 儅
JavaScript:
const char = '\u5105';
console.log(char); // Output: 儅
Java:
char c = '\u5105';
System.out.println(c); // Output: 儅
JSON:
{"text": "\u5105"} // Value: 儅
Python:
char = '\u5105'
print(char) # Output: 儅
Perl:
my $char = "\x{5105}";
print $char; # Output: 儅
PHP:
$char = "\x{5105}";
echo $char; // Output: 儅
Ruby:
char = "\u{5105}"
puts char # Output: 儅
Rust:
let c = '\u{5105}';
println!("{}", c); // Output: 儅
Go:
char := '\u5105'
fmt.Printf("%c\n", char) // Output: 儅
CSS:
/* CSS content property */
.element::before {
content: "\005105"; /* 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%85
MD5:
7de526512cd2dd92242f3cd5cd48a0b6
SHA1:
a5163060f8c235e1e247b9771fffe882cde04218
Base64:
5YSF