C:
char c = '\u74E5';
printf("%c\n", c); // Output: 瓥
JavaScript:
const char = '\u74E5';
console.log(char); // Output: 瓥
Java:
char c = '\u74E5';
System.out.println(c); // Output: 瓥
JSON:
{"text": "\u74E5"} // Value: 瓥
Python:
char = '\u74E5'
print(char) # Output: 瓥
Perl:
my $char = "\x{74E5}";
print $char; # Output: 瓥
PHP:
$char = "\x{74E5}";
echo $char; // Output: 瓥
Ruby:
char = "\u{74E5}"
puts char # Output: 瓥
Rust:
let c = '\u{74E5}';
println!("{}", c); // Output: 瓥
Go:
char := '\u74E5'
fmt.Printf("%c\n", char) // Output: 瓥
CSS:
/* CSS content property */
.element::before {
content: "\0074E5"; /* 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%93%A5
MD5:
69b4da490d16d5d3d389f7dfe9b1c070
SHA1:
5f0fdc839eb04e67425cc6b5da1128e38912cf52
Base64:
55Ol