C:
char c = '\u9796';
printf("%c\n", c); // Output: 鞖
JavaScript:
const char = '\u9796';
console.log(char); // Output: 鞖
Java:
char c = '\u9796';
System.out.println(c); // Output: 鞖
JSON:
{"text": "\u9796"} // Value: 鞖
Python:
char = '\u9796'
print(char) # Output: 鞖
Perl:
my $char = "\x{9796}";
print $char; # Output: 鞖
PHP:
$char = "\x{9796}";
echo $char; // Output: 鞖
Ruby:
char = "\u{9796}"
puts char # Output: 鞖
Rust:
let c = '\u{9796}';
println!("{}", c); // Output: 鞖
Go:
char := '\u9796'
fmt.Printf("%c\n", char) // Output: 鞖
CSS:
/* CSS content property */
.element::before {
content: "\009796"; /* 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%9E%96
MD5:
96df4a67312b6a4634e9e436916b381b
SHA1:
dbaf12af9eedd6352614c732b4ce6c28607f5b52
Base64:
6Z6W