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