C:
char c = '\u5603';
printf("%c\n", c); // Output: 嘃
JavaScript:
const char = '\u5603';
console.log(char); // Output: 嘃
Java:
char c = '\u5603';
System.out.println(c); // Output: 嘃
JSON:
{"text": "\u5603"} // Value: 嘃
Python:
char = '\u5603'
print(char) # Output: 嘃
Perl:
my $char = "\x{5603}";
print $char; # Output: 嘃
PHP:
$char = "\x{5603}";
echo $char; // Output: 嘃
Ruby:
char = "\u{5603}"
puts char # Output: 嘃
Rust:
let c = '\u{5603}';
println!("{}", c); // Output: 嘃
Go:
char := '\u5603'
fmt.Printf("%c\n", char) // Output: 嘃
CSS:
/* CSS content property */
.element::before {
content: "\005603"; /* 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%98%83
MD5:
46febcad3d7d35e66e6980563cd04be1
SHA1:
52147ad1b18c18e290b012c824670336bd9cb3c9
Base64:
5ZiD