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