C:
char c = '\u5057';
printf("%c\n", c); // Output: 偗
JavaScript:
const char = '\u5057';
console.log(char); // Output: 偗
Java:
char c = '\u5057';
System.out.println(c); // Output: 偗
JSON:
{"text": "\u5057"} // Value: 偗
Python:
char = '\u5057'
print(char) # Output: 偗
Perl:
my $char = "\x{5057}";
print $char; # Output: 偗
PHP:
$char = "\x{5057}";
echo $char; // Output: 偗
Ruby:
char = "\u{5057}"
puts char # Output: 偗
Rust:
let c = '\u{5057}';
println!("{}", c); // Output: 偗
Go:
char := '\u5057'
fmt.Printf("%c\n", char) // Output: 偗
CSS:
/* CSS content property */
.element::before {
content: "\005057"; /* 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%97
MD5:
dcbc17a4b7cf55cbcb9f09486037fe35
SHA1:
43fa6b2430c05c0632d9aac92d5d8ef4e86da68b
Base64:
5YGX