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