C:
char c = '\u5442';
printf("%c\n", c); // Output: 呂
JavaScript:
const char = '\u5442';
console.log(char); // Output: 呂
Java:
char c = '\u5442';
System.out.println(c); // Output: 呂
JSON:
{"text": "\u5442"} // Value: 呂
Python:
char = '\u5442'
print(char) # Output: 呂
Perl:
my $char = "\x{5442}";
print $char; # Output: 呂
PHP:
$char = "\x{5442}";
echo $char; // Output: 呂
Ruby:
char = "\u{5442}"
puts char # Output: 呂
Rust:
let c = '\u{5442}';
println!("{}", c); // Output: 呂
Go:
char := '\u5442'
fmt.Printf("%c\n", char) // Output: 呂
CSS:
/* CSS content property */
.element::before {
content: "\005442"; /* 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%91%82
MD5:
3f00516af4b57d24dae31863501abad2
SHA1:
9bcae380442ff1ac8d4d3e0e02c19d635bc1d1e5
Base64:
5ZGC