C:
char c = '\u9903';
printf("%c\n", c); // Output: 餃
JavaScript:
const char = '\u9903';
console.log(char); // Output: 餃
Java:
char c = '\u9903';
System.out.println(c); // Output: 餃
JSON:
{"text": "\u9903"} // Value: 餃
Python:
char = '\u9903'
print(char) # Output: 餃
Perl:
my $char = "\x{9903}";
print $char; # Output: 餃
PHP:
$char = "\x{9903}";
echo $char; // Output: 餃
Ruby:
char = "\u{9903}"
puts char # Output: 餃
Rust:
let c = '\u{9903}';
println!("{}", c); // Output: 餃
Go:
char := '\u9903'
fmt.Printf("%c\n", char) // Output: 餃
CSS:
/* CSS content property */
.element::before {
content: "\009903"; /* 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%83
MD5:
916d56560fdb605123c53ff30ec4a77e
SHA1:
cd6d2710c98d3d5df0fdfea169540acffee32511
Base64:
6aSD