C:
char c = '\u6341';
printf("%c\n", c); // Output: 捁
JavaScript:
const char = '\u6341';
console.log(char); // Output: 捁
Java:
char c = '\u6341';
System.out.println(c); // Output: 捁
JSON:
{"text": "\u6341"} // Value: 捁
Python:
char = '\u6341'
print(char) # Output: 捁
Perl:
my $char = "\x{6341}";
print $char; # Output: 捁
PHP:
$char = "\x{6341}";
echo $char; // Output: 捁
Ruby:
char = "\u{6341}"
puts char # Output: 捁
Rust:
let c = '\u{6341}';
println!("{}", c); // Output: 捁
Go:
char := '\u6341'
fmt.Printf("%c\n", char) // Output: 捁
CSS:
/* CSS content property */
.element::before {
content: "\006341"; /* 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=%E6%8D%81
MD5:
d25d9f90e24a79269c4bac37280b6cb3
SHA1:
ed6841fc23cb8a78e9dbbafbdc6da697558bc14b
Base64:
5o2B