C:
char c = '\u9048';
printf("%c\n", c); // Output: 遈
JavaScript:
const char = '\u9048';
console.log(char); // Output: 遈
Java:
char c = '\u9048';
System.out.println(c); // Output: 遈
JSON:
{"text": "\u9048"} // Value: 遈
Python:
char = '\u9048'
print(char) # Output: 遈
Perl:
my $char = "\x{9048}";
print $char; # Output: 遈
PHP:
$char = "\x{9048}";
echo $char; // Output: 遈
Ruby:
char = "\u{9048}"
puts char # Output: 遈
Rust:
let c = '\u{9048}';
println!("{}", c); // Output: 遈
Go:
char := '\u9048'
fmt.Printf("%c\n", char) // Output: 遈
CSS:
/* CSS content property */
.element::before {
content: "\009048"; /* 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%81%88
MD5:
a1a298d1415aa58ed2528478976c0f0a
SHA1:
f63112ccf6435678c428750501175314f2fbcd8b
Base64:
6YGI