C:
char c = '\u5056';
printf("%c\n", c); // Output: 偖
JavaScript:
const char = '\u5056';
console.log(char); // Output: 偖
Java:
char c = '\u5056';
System.out.println(c); // Output: 偖
JSON:
{"text": "\u5056"} // Value: 偖
Python:
char = '\u5056'
print(char) # Output: 偖
Perl:
my $char = "\x{5056}";
print $char; # Output: 偖
PHP:
$char = "\x{5056}";
echo $char; // Output: 偖
Ruby:
char = "\u{5056}"
puts char # Output: 偖
Rust:
let c = '\u{5056}';
println!("{}", c); // Output: 偖
Go:
char := '\u5056'
fmt.Printf("%c\n", char) // Output: 偖
CSS:
/* CSS content property */
.element::before {
content: "\005056"; /* 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%96
MD5:
101df28d2e765debbb91e6bb7028a9c8
SHA1:
eba3fb6d6be5287cd8745b71e1ee3ab7fddec711
Base64:
5YGW