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