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