C:
char c = '\u5470';
printf("%c\n", c); // Output: 呰
JavaScript:
const char = '\u5470';
console.log(char); // Output: 呰
Java:
char c = '\u5470';
System.out.println(c); // Output: 呰
JSON:
{"text": "\u5470"} // Value: 呰
Python:
char = '\u5470'
print(char) # Output: 呰
Perl:
my $char = "\x{5470}";
print $char; # Output: 呰
PHP:
$char = "\x{5470}";
echo $char; // Output: 呰
Ruby:
char = "\u{5470}"
puts char # Output: 呰
Rust:
let c = '\u{5470}';
println!("{}", c); // Output: 呰
Go:
char := '\u5470'
fmt.Printf("%c\n", char) // Output: 呰
CSS:
/* CSS content property */
.element::before {
content: "\005470"; /* 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%B0
MD5:
3aba8ed31101dac3e782da0eb6baf394
SHA1:
b04cc7ccb1f3088591ac3afbff42098d5f597e28
Base64:
5ZGw