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