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