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