C:
char c = '\u5469';
printf("%c\n", c); // Output: 呩
JavaScript:
const char = '\u5469';
console.log(char); // Output: 呩
Java:
char c = '\u5469';
System.out.println(c); // Output: 呩
JSON:
{"text": "\u5469"} // Value: 呩
Python:
char = '\u5469'
print(char) # Output: 呩
Perl:
my $char = "\x{5469}";
print $char; # Output: 呩
PHP:
$char = "\x{5469}";
echo $char; // Output: 呩
Ruby:
char = "\u{5469}"
puts char # Output: 呩
Rust:
let c = '\u{5469}';
println!("{}", c); // Output: 呩
Go:
char := '\u5469'
fmt.Printf("%c\n", char) // Output: 呩
CSS:
/* CSS content property */
.element::before {
content: "\005469"; /* 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%A9
MD5:
85ec9f2cff7b628db022c3a432203ee7
SHA1:
ca59be2a192363e6777a27915d2e58b57844b85e
Base64:
5ZGp