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