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