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