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