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