C:
char c = '\u990C';
printf("%c\n", c); // Output: 餌
JavaScript:
const char = '\u990C';
console.log(char); // Output: 餌
Java:
char c = '\u990C';
System.out.println(c); // Output: 餌
JSON:
{"text": "\u990C"} // Value: 餌
Python:
char = '\u990C'
print(char) # Output: 餌
Perl:
my $char = "\x{990C}";
print $char; # Output: 餌
PHP:
$char = "\x{990C}";
echo $char; // Output: 餌
Ruby:
char = "\u{990C}"
puts char # Output: 餌
Rust:
let c = '\u{990C}';
println!("{}", c); // Output: 餌
Go:
char := '\u990C'
fmt.Printf("%c\n", char) // Output: 餌
CSS:
/* CSS content property */
.element::before {
content: "\00990C"; /* 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%A4%8C
MD5:
323e469c7893f180e1548be7c59bc8c8
SHA1:
65289bc153e25165607042010b61460493a9b8e9
Base64:
6aSM