C:
char c = '\u5462';
printf("%c\n", c); // Output: 呢
JavaScript:
const char = '\u5462';
console.log(char); // Output: 呢
Java:
char c = '\u5462';
System.out.println(c); // Output: 呢
JSON:
{"text": "\u5462"} // Value: 呢
Python:
char = '\u5462'
print(char) # Output: 呢
Perl:
my $char = "\x{5462}";
print $char; # Output: 呢
PHP:
$char = "\x{5462}";
echo $char; // Output: 呢
Ruby:
char = "\u{5462}"
puts char # Output: 呢
Rust:
let c = '\u{5462}';
println!("{}", c); // Output: 呢
Go:
char := '\u5462'
fmt.Printf("%c\n", char) // Output: 呢
CSS:
/* CSS content property */
.element::before {
content: "\005462"; /* 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%A2
MD5:
65ac5a7b1552f2804ccfd86ac71571de
SHA1:
dcf66dcd6087fd64f27243d3abe790b8dceef210
Base64:
5ZGi