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