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