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