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