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