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