C:
char c = '\u93C9';
printf("%c\n", c); // Output: 鏉
JavaScript:
const char = '\u93C9';
console.log(char); // Output: 鏉
Java:
char c = '\u93C9';
System.out.println(c); // Output: 鏉
JSON:
{"text": "\u93C9"} // Value: 鏉
Python:
char = '\u93C9'
print(char) # Output: 鏉
Perl:
my $char = "\x{93C9}";
print $char; # Output: 鏉
PHP:
$char = "\x{93C9}";
echo $char; // Output: 鏉
Ruby:
char = "\u{93C9}"
puts char # Output: 鏉
Rust:
let c = '\u{93C9}';
println!("{}", c); // Output: 鏉
Go:
char := '\u93C9'
fmt.Printf("%c\n", char) // Output: 鏉
CSS:
/* CSS content property */
.element::before {
content: "\0093C9"; /* 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%8F%89
MD5:
f51880a258498ab42ad3f357d810eade
SHA1:
8275748df5ed9c4f5affb0967647adcd17a065db
Base64:
6Y+J