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