C:
char c = '\u9960';
printf("%c\n", c); // Output: 饠
JavaScript:
const char = '\u9960';
console.log(char); // Output: 饠
Java:
char c = '\u9960';
System.out.println(c); // Output: 饠
JSON:
{"text": "\u9960"} // Value: 饠
Python:
char = '\u9960'
print(char) # Output: 饠
Perl:
my $char = "\x{9960}";
print $char; # Output: 饠
PHP:
$char = "\x{9960}";
echo $char; // Output: 饠
Ruby:
char = "\u{9960}"
puts char # Output: 饠
Rust:
let c = '\u{9960}';
println!("{}", c); // Output: 饠
Go:
char := '\u9960'
fmt.Printf("%c\n", char) // Output: 饠
CSS:
/* CSS content property */
.element::before {
content: "\009960"; /* 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%A5%A0
MD5:
edac07c229bfe2c7387f92ee036d0952
SHA1:
80f2545e19de2a2bc4b991077e1d98e1797b8351
Base64:
6aWg