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