C:
char c = '\u73D5';
printf("%c\n", c); // Output: 珕
JavaScript:
const char = '\u73D5';
console.log(char); // Output: 珕
Java:
char c = '\u73D5';
System.out.println(c); // Output: 珕
JSON:
{"text": "\u73D5"} // Value: 珕
Python:
char = '\u73D5'
print(char) # Output: 珕
Perl:
my $char = "\x{73D5}";
print $char; # Output: 珕
PHP:
$char = "\x{73D5}";
echo $char; // Output: 珕
Ruby:
char = "\u{73D5}"
puts char # Output: 珕
Rust:
let c = '\u{73D5}';
println!("{}", c); // Output: 珕
Go:
char := '\u73D5'
fmt.Printf("%c\n", char) // Output: 珕
CSS:
/* CSS content property */
.element::before {
content: "\0073D5"; /* 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%8F%95
MD5:
de8614f8c9efa0bb58c9b4a050a44627
SHA1:
03f8d5d354470e3de47afed8d95e26fcac754413
Base64:
54+V