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