C:
char c = '\u7C99';
printf("%c\n", c); // Output: 粙
JavaScript:
const char = '\u7C99';
console.log(char); // Output: 粙
Java:
char c = '\u7C99';
System.out.println(c); // Output: 粙
JSON:
{"text": "\u7C99"} // Value: 粙
Python:
char = '\u7C99'
print(char) # Output: 粙
Perl:
my $char = "\x{7C99}";
print $char; # Output: 粙
PHP:
$char = "\x{7C99}";
echo $char; // Output: 粙
Ruby:
char = "\u{7C99}"
puts char # Output: 粙
Rust:
let c = '\u{7C99}';
println!("{}", c); // Output: 粙
Go:
char := '\u7C99'
fmt.Printf("%c\n", char) // Output: 粙
CSS:
/* CSS content property */
.element::before {
content: "\007C99"; /* 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%99
MD5:
b0aa38de69d629807839d4387429fa79
SHA1:
6851025e4c7c73ea6b188e5c34dfe264fb2462b2
Base64:
57KZ