C:
char c = '\u73A1';
printf("%c\n", c); // Output: 玡
JavaScript:
const char = '\u73A1';
console.log(char); // Output: 玡
Java:
char c = '\u73A1';
System.out.println(c); // Output: 玡
JSON:
{"text": "\u73A1"} // Value: 玡
Python:
char = '\u73A1'
print(char) # Output: 玡
Perl:
my $char = "\x{73A1}";
print $char; # Output: 玡
PHP:
$char = "\x{73A1}";
echo $char; // Output: 玡
Ruby:
char = "\u{73A1}"
puts char # Output: 玡
Rust:
let c = '\u{73A1}';
println!("{}", c); // Output: 玡
Go:
char := '\u73A1'
fmt.Printf("%c\n", char) // Output: 玡
CSS:
/* CSS content property */
.element::before {
content: "\0073A1"; /* 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=%E7%8E%A1
MD5:
56a04e6c6c23d56d7f021d862b9994c2
SHA1:
73d093d3f20c230ba3a72c95d287ace4e5150222
Base64:
546h