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