C:
char c = '\u97C1';
printf("%c\n", c); // Output: 韁
JavaScript:
const char = '\u97C1';
console.log(char); // Output: 韁
Java:
char c = '\u97C1';
System.out.println(c); // Output: 韁
JSON:
{"text": "\u97C1"} // Value: 韁
Python:
char = '\u97C1'
print(char) # Output: 韁
Perl:
my $char = "\x{97C1}";
print $char; # Output: 韁
PHP:
$char = "\x{97C1}";
echo $char; // Output: 韁
Ruby:
char = "\u{97C1}"
puts char # Output: 韁
Rust:
let c = '\u{97C1}';
println!("{}", c); // Output: 韁
Go:
char := '\u97C1'
fmt.Printf("%c\n", char) // Output: 韁
CSS:
/* CSS content property */
.element::before {
content: "\0097C1"; /* 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%81
MD5:
98169eeb3ff138221c064d61a05761b1
SHA1:
27ef47992bef9a1bcee72681cf514b34d0f68d2e
Base64:
6Z+B