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