C:
char c = '\u97C0';
printf("%c\n", c); // Output: 韀
JavaScript:
const char = '\u97C0';
console.log(char); // Output: 韀
Java:
char c = '\u97C0';
System.out.println(c); // Output: 韀
JSON:
{"text": "\u97C0"} // Value: 韀
Python:
char = '\u97C0'
print(char) # Output: 韀
Perl:
my $char = "\x{97C0}";
print $char; # Output: 韀
PHP:
$char = "\x{97C0}";
echo $char; // Output: 韀
Ruby:
char = "\u{97C0}"
puts char # Output: 韀
Rust:
let c = '\u{97C0}';
println!("{}", c); // Output: 韀
Go:
char := '\u97C0'
fmt.Printf("%c\n", char) // Output: 韀
CSS:
/* CSS content property */
.element::before {
content: "\0097C0"; /* 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%80
MD5:
0edb9ccad9f320fc3e6d23129854b91b
SHA1:
8743f4c840b680390e07dfe6712e7225c40b78ac
Base64:
6Z+A