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