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