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