C:
char c = '\u97DF';
printf("%c\n", c); // Output: 韟
JavaScript:
const char = '\u97DF';
console.log(char); // Output: 韟
Java:
char c = '\u97DF';
System.out.println(c); // Output: 韟
JSON:
{"text": "\u97DF"} // Value: 韟
Python:
char = '\u97DF'
print(char) # Output: 韟
Perl:
my $char = "\x{97DF}";
print $char; # Output: 韟
PHP:
$char = "\x{97DF}";
echo $char; // Output: 韟
Ruby:
char = "\u{97DF}"
puts char # Output: 韟
Rust:
let c = '\u{97DF}';
println!("{}", c); // Output: 韟
Go:
char := '\u97DF'
fmt.Printf("%c\n", char) // Output: 韟
CSS:
/* CSS content property */
.element::before {
content: "\0097DF"; /* 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%9F%9F
MD5:
9ec3135e2bfa9034b883a5f24ece52c1
SHA1:
61edaf905f4f500c4a7d23292f8478fe77c55ab3
Base64:
6Z+f