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