C:
char c = '\u8123';
printf("%c\n", c); // Output: 脣
JavaScript:
const char = '\u8123';
console.log(char); // Output: 脣
Java:
char c = '\u8123';
System.out.println(c); // Output: 脣
JSON:
{"text": "\u8123"} // Value: 脣
Python:
char = '\u8123'
print(char) # Output: 脣
Perl:
my $char = "\x{8123}";
print $char; # Output: 脣
PHP:
$char = "\x{8123}";
echo $char; // Output: 脣
Ruby:
char = "\u{8123}"
puts char # Output: 脣
Rust:
let c = '\u{8123}';
println!("{}", c); // Output: 脣
Go:
char := '\u8123'
fmt.Printf("%c\n", char) // Output: 脣
CSS:
/* CSS content property */
.element::before {
content: "\008123"; /* 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=%E8%84%A3
MD5:
65913fd7becdf4e0dabc3bbaa129d0d4
SHA1:
28ca741a10b2de5450c133852bca2468222a20bd
Base64:
6ISj