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