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