C:
char c = '\u55DB';
printf("%c\n", c); // Output: 嗛
JavaScript:
const char = '\u55DB';
console.log(char); // Output: 嗛
Java:
char c = '\u55DB';
System.out.println(c); // Output: 嗛
JSON:
{"text": "\u55DB"} // Value: 嗛
Python:
char = '\u55DB'
print(char) # Output: 嗛
Perl:
my $char = "\x{55DB}";
print $char; # Output: 嗛
PHP:
$char = "\x{55DB}";
echo $char; // Output: 嗛
Ruby:
char = "\u{55DB}"
puts char # Output: 嗛
Rust:
let c = '\u{55DB}';
println!("{}", c); // Output: 嗛
Go:
char := '\u55DB'
fmt.Printf("%c\n", char) // Output: 嗛
CSS:
/* CSS content property */
.element::before {
content: "\0055DB"; /* 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%97%9B
MD5:
1d7b8fae1818ea62ca36c1e213e3d131
SHA1:
bca83862b355d2fb32d863f6c5133a0c317907d9
Base64:
5Zeb