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