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