C:
char c = '\u91EA';
printf("%c\n", c); // Output: 釪
JavaScript:
const char = '\u91EA';
console.log(char); // Output: 釪
Java:
char c = '\u91EA';
System.out.println(c); // Output: 釪
JSON:
{"text": "\u91EA"} // Value: 釪
Python:
char = '\u91EA'
print(char) # Output: 釪
Perl:
my $char = "\x{91EA}";
print $char; # Output: 釪
PHP:
$char = "\x{91EA}";
echo $char; // Output: 釪
Ruby:
char = "\u{91EA}"
puts char # Output: 釪
Rust:
let c = '\u{91EA}';
println!("{}", c); // Output: 釪
Go:
char := '\u91EA'
fmt.Printf("%c\n", char) // Output: 釪
CSS:
/* CSS content property */
.element::before {
content: "\0091EA"; /* 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=%E9%87%AA
MD5:
865531d1feffe82deebe6edcf904f4b6
SHA1:
34fa372afcfb2ca5a0a4fedbc17310a39db6fac1
Base64:
6Yeq