C:
char c = '\u5402';
printf("%c\n", c); // Output: 吂
JavaScript:
const char = '\u5402';
console.log(char); // Output: 吂
Java:
char c = '\u5402';
System.out.println(c); // Output: 吂
JSON:
{"text": "\u5402"} // Value: 吂
Python:
char = '\u5402'
print(char) # Output: 吂
Perl:
my $char = "\x{5402}";
print $char; # Output: 吂
PHP:
$char = "\x{5402}";
echo $char; // Output: 吂
Ruby:
char = "\u{5402}"
puts char # Output: 吂
Rust:
let c = '\u{5402}';
println!("{}", c); // Output: 吂
Go:
char := '\u5402'
fmt.Printf("%c\n", char) // Output: 吂
CSS:
/* CSS content property */
.element::before {
content: "\005402"; /* 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%90%82
MD5:
4ece33a791d94ddd83d8cb0c42034fbb
SHA1:
b575a49feb56c9927fe720b5d6084165c529ed73
Base64:
5ZCC