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