C:
char c = '\u9DB9';
printf("%c\n", c); // Output: 鶹
JavaScript:
const char = '\u9DB9';
console.log(char); // Output: 鶹
Java:
char c = '\u9DB9';
System.out.println(c); // Output: 鶹
JSON:
{"text": "\u9DB9"} // Value: 鶹
Python:
char = '\u9DB9'
print(char) # Output: 鶹
Perl:
my $char = "\x{9DB9}";
print $char; # Output: 鶹
PHP:
$char = "\x{9DB9}";
echo $char; // Output: 鶹
Ruby:
char = "\u{9DB9}"
puts char # Output: 鶹
Rust:
let c = '\u{9DB9}';
println!("{}", c); // Output: 鶹
Go:
char := '\u9DB9'
fmt.Printf("%c\n", char) // Output: 鶹
CSS:
/* CSS content property */
.element::before {
content: "\009DB9"; /* 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%B6%B9
MD5:
545a14d790f5331fc8a044fed184e1e1
SHA1:
292da9347b725585e071f4295658292554ef7f40
Base64:
6ba5