C:
char c = '\u7390';
printf("%c\n", c); // Output: 玐
JavaScript:
const char = '\u7390';
console.log(char); // Output: 玐
Java:
char c = '\u7390';
System.out.println(c); // Output: 玐
JSON:
{"text": "\u7390"} // Value: 玐
Python:
char = '\u7390'
print(char) # Output: 玐
Perl:
my $char = "\x{7390}";
print $char; # Output: 玐
PHP:
$char = "\x{7390}";
echo $char; // Output: 玐
Ruby:
char = "\u{7390}"
puts char # Output: 玐
Rust:
let c = '\u{7390}';
println!("{}", c); // Output: 玐
Go:
char := '\u7390'
fmt.Printf("%c\n", char) // Output: 玐
CSS:
/* CSS content property */
.element::before {
content: "\007390"; /* 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%90
MD5:
bfafb0beb079b87b7e020ecab53e0ddb
SHA1:
07a151c37915adf18ad233eaa5b74a1067de64e1
Base64:
546Q