C:
char c = '\u7468';
printf("%c\n", c); // Output: 瑨
JavaScript:
const char = '\u7468';
console.log(char); // Output: 瑨
Java:
char c = '\u7468';
System.out.println(c); // Output: 瑨
JSON:
{"text": "\u7468"} // Value: 瑨
Python:
char = '\u7468'
print(char) # Output: 瑨
Perl:
my $char = "\x{7468}";
print $char; # Output: 瑨
PHP:
$char = "\x{7468}";
echo $char; // Output: 瑨
Ruby:
char = "\u{7468}"
puts char # Output: 瑨
Rust:
let c = '\u{7468}';
println!("{}", c); // Output: 瑨
Go:
char := '\u7468'
fmt.Printf("%c\n", char) // Output: 瑨
CSS:
/* CSS content property */
.element::before {
content: "\007468"; /* 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%91%A8
MD5:
015dc5c9f9d1f70d73d740b0c4dbf1bf
SHA1:
4690ccd17d9b2fe4efed84cd63c89c8e4abf1401
Base64:
55Go