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