C:
char c = '\u5502';
printf("%c\n", c); // Output: 唂
JavaScript:
const char = '\u5502';
console.log(char); // Output: 唂
Java:
char c = '\u5502';
System.out.println(c); // Output: 唂
JSON:
{"text": "\u5502"} // Value: 唂
Python:
char = '\u5502'
print(char) # Output: 唂
Perl:
my $char = "\x{5502}";
print $char; # Output: 唂
PHP:
$char = "\x{5502}";
echo $char; // Output: 唂
Ruby:
char = "\u{5502}"
puts char # Output: 唂
Rust:
let c = '\u{5502}';
println!("{}", c); // Output: 唂
Go:
char := '\u5502'
fmt.Printf("%c\n", char) // Output: 唂
CSS:
/* CSS content property */
.element::before {
content: "\005502"; /* 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%94%82
MD5:
330aca92f455d148a3fae744ac88d459
SHA1:
e72b73f982ff019910a76b77dd55a16096021359
Base64:
5ZSC