C:
char c = '\u7456';
printf("%c\n", c); // Output: 瑖
JavaScript:
const char = '\u7456';
console.log(char); // Output: 瑖
Java:
char c = '\u7456';
System.out.println(c); // Output: 瑖
JSON:
{"text": "\u7456"} // Value: 瑖
Python:
char = '\u7456'
print(char) # Output: 瑖
Perl:
my $char = "\x{7456}";
print $char; # Output: 瑖
PHP:
$char = "\x{7456}";
echo $char; // Output: 瑖
Ruby:
char = "\u{7456}"
puts char # Output: 瑖
Rust:
let c = '\u{7456}';
println!("{}", c); // Output: 瑖
Go:
char := '\u7456'
fmt.Printf("%c\n", char) // Output: 瑖
CSS:
/* CSS content property */
.element::before {
content: "\007456"; /* 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%96
MD5:
eaae3c2fad2cb26ae4160bbc9bd23e2f
SHA1:
d2521327e1e05b2261bd05a1150ea11dfb5a9627
Base64:
55GW