C:
char c = '\u9391';
printf("%c\n", c); // Output: 鎑
JavaScript:
const char = '\u9391';
console.log(char); // Output: 鎑
Java:
char c = '\u9391';
System.out.println(c); // Output: 鎑
JSON:
{"text": "\u9391"} // Value: 鎑
Python:
char = '\u9391'
print(char) # Output: 鎑
Perl:
my $char = "\x{9391}";
print $char; # Output: 鎑
PHP:
$char = "\x{9391}";
echo $char; // Output: 鎑
Ruby:
char = "\u{9391}"
puts char # Output: 鎑
Rust:
let c = '\u{9391}';
println!("{}", c); // Output: 鎑
Go:
char := '\u9391'
fmt.Printf("%c\n", char) // Output: 鎑
CSS:
/* CSS content property */
.element::before {
content: "\009391"; /* 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%91
MD5:
f1fb96481b69cf994c65ffb0d036a7f9
SHA1:
0334e1fefee6cd5fdee1c9a5f4289de17c647564
Base64:
6Y6R