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