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