C:
char c = '\u5042';
printf("%c\n", c); // Output: 偂
JavaScript:
const char = '\u5042';
console.log(char); // Output: 偂
Java:
char c = '\u5042';
System.out.println(c); // Output: 偂
JSON:
{"text": "\u5042"} // Value: 偂
Python:
char = '\u5042'
print(char) # Output: 偂
Perl:
my $char = "\x{5042}";
print $char; # Output: 偂
PHP:
$char = "\x{5042}";
echo $char; // Output: 偂
Ruby:
char = "\u{5042}"
puts char # Output: 偂
Rust:
let c = '\u{5042}';
println!("{}", c); // Output: 偂
Go:
char := '\u5042'
fmt.Printf("%c\n", char) // Output: 偂
CSS:
/* CSS content property */
.element::before {
content: "\005042"; /* 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%82
MD5:
7d2962d12e1343026040c5aa75694167
SHA1:
3b415b0c3453c6d90eaf6ff67cbf91ee240175d6
Base64:
5YGC