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