C:
char c = '\u9906';
printf("%c\n", c); // Output: 餆
JavaScript:
const char = '\u9906';
console.log(char); // Output: 餆
Java:
char c = '\u9906';
System.out.println(c); // Output: 餆
JSON:
{"text": "\u9906"} // Value: 餆
Python:
char = '\u9906'
print(char) # Output: 餆
Perl:
my $char = "\x{9906}";
print $char; # Output: 餆
PHP:
$char = "\x{9906}";
echo $char; // Output: 餆
Ruby:
char = "\u{9906}"
puts char # Output: 餆
Rust:
let c = '\u{9906}';
println!("{}", c); // Output: 餆
Go:
char := '\u9906'
fmt.Printf("%c\n", char) // Output: 餆
CSS:
/* CSS content property */
.element::before {
content: "\009906"; /* 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%86
MD5:
0a87b73e7adced24175af029a6aaa7e3
SHA1:
bb07dde07185b3f4973d1f7c2cc36655fbd30fd2
Base64:
6aSG