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