C:
char c = '\u5062';
printf("%c\n", c); // Output: 偢
JavaScript:
const char = '\u5062';
console.log(char); // Output: 偢
Java:
char c = '\u5062';
System.out.println(c); // Output: 偢
JSON:
{"text": "\u5062"} // Value: 偢
Python:
char = '\u5062'
print(char) # Output: 偢
Perl:
my $char = "\x{5062}";
print $char; # Output: 偢
PHP:
$char = "\x{5062}";
echo $char; // Output: 偢
Ruby:
char = "\u{5062}"
puts char # Output: 偢
Rust:
let c = '\u{5062}';
println!("{}", c); // Output: 偢
Go:
char := '\u5062'
fmt.Printf("%c\n", char) // Output: 偢
CSS:
/* CSS content property */
.element::before {
content: "\005062"; /* 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%A2
MD5:
514775debe5a3884d8bad9f75c16a498
SHA1:
8e89daff9dae5f476d4d1d2e96f7320d55ce5b11
Base64:
5YGi