C:
char c = '\u9950';
printf("%c\n", c); // Output: 饐
JavaScript:
const char = '\u9950';
console.log(char); // Output: 饐
Java:
char c = '\u9950';
System.out.println(c); // Output: 饐
JSON:
{"text": "\u9950"} // Value: 饐
Python:
char = '\u9950'
print(char) # Output: 饐
Perl:
my $char = "\x{9950}";
print $char; # Output: 饐
PHP:
$char = "\x{9950}";
echo $char; // Output: 饐
Ruby:
char = "\u{9950}"
puts char # Output: 饐
Rust:
let c = '\u{9950}';
println!("{}", c); // Output: 饐
Go:
char := '\u9950'
fmt.Printf("%c\n", char) // Output: 饐
CSS:
/* CSS content property */
.element::before {
content: "\009950"; /* 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%90
MD5:
8c3c6eeca0fe76fd920273e74f60e1fa
SHA1:
af818afceb42b1541c020d648db10794d036c3f0
Base64:
6aWQ