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