C:
char c = '\u5526';
printf("%c\n", c); // Output: 唦
JavaScript:
const char = '\u5526';
console.log(char); // Output: 唦
Java:
char c = '\u5526';
System.out.println(c); // Output: 唦
JSON:
{"text": "\u5526"} // Value: 唦
Python:
char = '\u5526'
print(char) # Output: 唦
Perl:
my $char = "\x{5526}";
print $char; # Output: 唦
PHP:
$char = "\x{5526}";
echo $char; // Output: 唦
Ruby:
char = "\u{5526}"
puts char # Output: 唦
Rust:
let c = '\u{5526}';
println!("{}", c); // Output: 唦
Go:
char := '\u5526'
fmt.Printf("%c\n", char) // Output: 唦
CSS:
/* CSS content property */
.element::before {
content: "\005526"; /* 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%94%A6
MD5:
182f9e2277a0ed187584a1ed8fde5133
SHA1:
234bf9c5a0ef67221528f5e547f51a1346dfe57f
Base64:
5ZSm