C:
char c = '\u9961';
printf("%c\n", c); // Output: 饡
JavaScript:
const char = '\u9961';
console.log(char); // Output: 饡
Java:
char c = '\u9961';
System.out.println(c); // Output: 饡
JSON:
{"text": "\u9961"} // Value: 饡
Python:
char = '\u9961'
print(char) # Output: 饡
Perl:
my $char = "\x{9961}";
print $char; # Output: 饡
PHP:
$char = "\x{9961}";
echo $char; // Output: 饡
Ruby:
char = "\u{9961}"
puts char # Output: 饡
Rust:
let c = '\u{9961}';
println!("{}", c); // Output: 饡
Go:
char := '\u9961'
fmt.Printf("%c\n", char) // Output: 饡
CSS:
/* CSS content property */
.element::before {
content: "\009961"; /* 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%A1
MD5:
e0266e375bd23016be415d1f6632b1be
SHA1:
333fa9b13f80b598a6d3a40a78d8f150ca67bf4a
Base64:
6aWh