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