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