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