C:
char c = '\u9C2F';
printf("%c\n", c); // Output: 鰯
JavaScript:
const char = '\u9C2F';
console.log(char); // Output: 鰯
Java:
char c = '\u9C2F';
System.out.println(c); // Output: 鰯
JSON:
{"text": "\u9C2F"} // Value: 鰯
Python:
char = '\u9C2F'
print(char) # Output: 鰯
Perl:
my $char = "\x{9C2F}";
print $char; # Output: 鰯
PHP:
$char = "\x{9C2F}";
echo $char; // Output: 鰯
Ruby:
char = "\u{9C2F}"
puts char # Output: 鰯
Rust:
let c = '\u{9C2F}';
println!("{}", c); // Output: 鰯
Go:
char := '\u9C2F'
fmt.Printf("%c\n", char) // Output: 鰯
CSS:
/* CSS content property */
.element::before {
content: "\009C2F"; /* 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%B0%AF
MD5:
5abb8591f164b1d52acd5930880870b6
SHA1:
542172248b0a51fb9c4f594923c243dd646e4bca
Base64:
6bCv