C:
char c = '\u5D61';
printf("%c\n", c); // Output: 嵡
JavaScript:
const char = '\u5D61';
console.log(char); // Output: 嵡
Java:
char c = '\u5D61';
System.out.println(c); // Output: 嵡
JSON:
{"text": "\u5D61"} // Value: 嵡
Python:
char = '\u5D61'
print(char) # Output: 嵡
Perl:
my $char = "\x{5D61}";
print $char; # Output: 嵡
PHP:
$char = "\x{5D61}";
echo $char; // Output: 嵡
Ruby:
char = "\u{5D61}"
puts char # Output: 嵡
Rust:
let c = '\u{5D61}';
println!("{}", c); // Output: 嵡
Go:
char := '\u5D61'
fmt.Printf("%c\n", char) // Output: 嵡
CSS:
/* CSS content property */
.element::before {
content: "\005D61"; /* 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=%E5%B5%A1
MD5:
fc3eedf195880b724096de4a0986ab23
SHA1:
dd5c5323fd79f91faeb4e7d5ebc038da012ebcc4
Base64:
5bWh