C:
char c = '\u93B0';
printf("%c\n", c); // Output: 鎰
JavaScript:
const char = '\u93B0';
console.log(char); // Output: 鎰
Java:
char c = '\u93B0';
System.out.println(c); // Output: 鎰
JSON:
{"text": "\u93B0"} // Value: 鎰
Python:
char = '\u93B0'
print(char) # Output: 鎰
Perl:
my $char = "\x{93B0}";
print $char; # Output: 鎰
PHP:
$char = "\x{93B0}";
echo $char; // Output: 鎰
Ruby:
char = "\u{93B0}"
puts char # Output: 鎰
Rust:
let c = '\u{93B0}';
println!("{}", c); // Output: 鎰
Go:
char := '\u93B0'
fmt.Printf("%c\n", char) // Output: 鎰
CSS:
/* CSS content property */
.element::before {
content: "\0093B0"; /* 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%B0
MD5:
65e68822e4eed585f7a1d43291482df8
SHA1:
c0b5400761782edd9277a9f6ff139719c0d089ff
Base64:
6Y6w