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