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