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