C:
char c = '\u9DE6';
printf("%c\n", c); // Output: 鷦
JavaScript:
const char = '\u9DE6';
console.log(char); // Output: 鷦
Java:
char c = '\u9DE6';
System.out.println(c); // Output: 鷦
JSON:
{"text": "\u9DE6"} // Value: 鷦
Python:
char = '\u9DE6'
print(char) # Output: 鷦
Perl:
my $char = "\x{9DE6}";
print $char; # Output: 鷦
PHP:
$char = "\x{9DE6}";
echo $char; // Output: 鷦
Ruby:
char = "\u{9DE6}"
puts char # Output: 鷦
Rust:
let c = '\u{9DE6}';
println!("{}", c); // Output: 鷦
Go:
char := '\u9DE6'
fmt.Printf("%c\n", char) // Output: 鷦
CSS:
/* CSS content property */
.element::before {
content: "\009DE6"; /* 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%B7%A6
MD5:
fd525a8cdc191b159e3afc86632e6192
SHA1:
f6bd2d870c64e059f504e61358f6e7dfaffb1753
Base64:
6bem