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