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