C:
char c = '\u91DF';
printf("%c\n", c); // Output: 釟
JavaScript:
const char = '\u91DF';
console.log(char); // Output: 釟
Java:
char c = '\u91DF';
System.out.println(c); // Output: 釟
JSON:
{"text": "\u91DF"} // Value: 釟
Python:
char = '\u91DF'
print(char) # Output: 釟
Perl:
my $char = "\x{91DF}";
print $char; # Output: 釟
PHP:
$char = "\x{91DF}";
echo $char; // Output: 釟
Ruby:
char = "\u{91DF}"
puts char # Output: 釟
Rust:
let c = '\u{91DF}';
println!("{}", c); // Output: 釟
Go:
char := '\u91DF'
fmt.Printf("%c\n", char) // Output: 釟
CSS:
/* CSS content property */
.element::before {
content: "\0091DF"; /* 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%9F
MD5:
349410fa2533e8b5c0738ffd10e221bc
SHA1:
618057e71d5a649b220d244a94198cffad1ac8af
Base64:
6Yef