C:
char c = '\u9381';
printf("%c\n", c); // Output: 鎁
JavaScript:
const char = '\u9381';
console.log(char); // Output: 鎁
Java:
char c = '\u9381';
System.out.println(c); // Output: 鎁
JSON:
{"text": "\u9381"} // Value: 鎁
Python:
char = '\u9381'
print(char) # Output: 鎁
Perl:
my $char = "\x{9381}";
print $char; # Output: 鎁
PHP:
$char = "\x{9381}";
echo $char; // Output: 鎁
Ruby:
char = "\u{9381}"
puts char # Output: 鎁
Rust:
let c = '\u{9381}';
println!("{}", c); // Output: 鎁
Go:
char := '\u9381'
fmt.Printf("%c\n", char) // Output: 鎁
CSS:
/* CSS content property */
.element::before {
content: "\009381"; /* 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%8E%81
MD5:
5a75a63bf578c29054b270b4eb9cda6d
SHA1:
fe2df1cbd244fdeaae17ff13aff62d4aa9e0ec43
Base64:
6Y6B