C:
char c = '\u5054';
printf("%c\n", c); // Output: 偔
JavaScript:
const char = '\u5054';
console.log(char); // Output: 偔
Java:
char c = '\u5054';
System.out.println(c); // Output: 偔
JSON:
{"text": "\u5054"} // Value: 偔
Python:
char = '\u5054'
print(char) # Output: 偔
Perl:
my $char = "\x{5054}";
print $char; # Output: 偔
PHP:
$char = "\x{5054}";
echo $char; // Output: 偔
Ruby:
char = "\u{5054}"
puts char # Output: 偔
Rust:
let c = '\u{5054}';
println!("{}", c); // Output: 偔
Go:
char := '\u5054'
fmt.Printf("%c\n", char) // Output: 偔
CSS:
/* CSS content property */
.element::before {
content: "\005054"; /* 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%81%94
MD5:
496b1b5cd0ad6250c41c94800a3abac2
SHA1:
d54f8cccec1183689cc23ab5282c3a4316cc835b
Base64:
5YGU