C:
char c = '\u5DAB';
printf("%c\n", c); // Output: 嶫
JavaScript:
const char = '\u5DAB';
console.log(char); // Output: 嶫
Java:
char c = '\u5DAB';
System.out.println(c); // Output: 嶫
JSON:
{"text": "\u5DAB"} // Value: 嶫
Python:
char = '\u5DAB'
print(char) # Output: 嶫
Perl:
my $char = "\x{5DAB}";
print $char; # Output: 嶫
PHP:
$char = "\x{5DAB}";
echo $char; // Output: 嶫
Ruby:
char = "\u{5DAB}"
puts char # Output: 嶫
Rust:
let c = '\u{5DAB}';
println!("{}", c); // Output: 嶫
Go:
char := '\u5DAB'
fmt.Printf("%c\n", char) // Output: 嶫
CSS:
/* CSS content property */
.element::before {
content: "\005DAB"; /* 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%B6%AB
MD5:
cabad1499f9a0af9f6b43a2016ded1d4
SHA1:
08301e2595dfba872be9fee1db22c2d1a184b26d
Base64:
5bar