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