C:
char c = '\u91D4';
printf("%c\n", c); // Output: 釔
JavaScript:
const char = '\u91D4';
console.log(char); // Output: 釔
Java:
char c = '\u91D4';
System.out.println(c); // Output: 釔
JSON:
{"text": "\u91D4"} // Value: 釔
Python:
char = '\u91D4'
print(char) # Output: 釔
Perl:
my $char = "\x{91D4}";
print $char; # Output: 釔
PHP:
$char = "\x{91D4}";
echo $char; // Output: 釔
Ruby:
char = "\u{91D4}"
puts char # Output: 釔
Rust:
let c = '\u{91D4}';
println!("{}", c); // Output: 釔
Go:
char := '\u91D4'
fmt.Printf("%c\n", char) // Output: 釔
CSS:
/* CSS content property */
.element::before {
content: "\0091D4"; /* 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%94
MD5:
4fadc208605345ae4287d416d522bef1
SHA1:
842f723e798cab6186fca90dea405f4e8b8a114f
Base64:
6YeU