C:
char c = '\u5946';
printf("%c\n", c); // Output: 奆
JavaScript:
const char = '\u5946';
console.log(char); // Output: 奆
Java:
char c = '\u5946';
System.out.println(c); // Output: 奆
JSON:
{"text": "\u5946"} // Value: 奆
Python:
char = '\u5946'
print(char) # Output: 奆
Perl:
my $char = "\x{5946}";
print $char; # Output: 奆
PHP:
$char = "\x{5946}";
echo $char; // Output: 奆
Ruby:
char = "\u{5946}"
puts char # Output: 奆
Rust:
let c = '\u{5946}';
println!("{}", c); // Output: 奆
Go:
char := '\u5946'
fmt.Printf("%c\n", char) // Output: 奆
CSS:
/* CSS content property */
.element::before {
content: "\005946"; /* 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%A5%86
MD5:
85267e7656259a893f936032afb0b567
SHA1:
f6a0b3c7c52343d30f4947fe42e7c2a2f6c0400e
Base64:
5aWG