C:
char c = '\u7C8B';
printf("%c\n", c); // Output: 粋
JavaScript:
const char = '\u7C8B';
console.log(char); // Output: 粋
Java:
char c = '\u7C8B';
System.out.println(c); // Output: 粋
JSON:
{"text": "\u7C8B"} // Value: 粋
Python:
char = '\u7C8B'
print(char) # Output: 粋
Perl:
my $char = "\x{7C8B}";
print $char; # Output: 粋
PHP:
$char = "\x{7C8B}";
echo $char; // Output: 粋
Ruby:
char = "\u{7C8B}"
puts char # Output: 粋
Rust:
let c = '\u{7C8B}';
println!("{}", c); // Output: 粋
Go:
char := '\u7C8B'
fmt.Printf("%c\n", char) // Output: 粋
CSS:
/* CSS content property */
.element::before {
content: "\007C8B"; /* 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=%E7%B2%8B
MD5:
abc7f34b0e68e05d867f71c200f7c139
SHA1:
4b96d9965242b583a6dc1c877b53480074dd13e9
Base64:
57KL