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