C:
char c = '\u75C7';
printf("%c\n", c); // Output: 症
JavaScript:
const char = '\u75C7';
console.log(char); // Output: 症
Java:
char c = '\u75C7';
System.out.println(c); // Output: 症
JSON:
{"text": "\u75C7"} // Value: 症
Python:
char = '\u75C7'
print(char) # Output: 症
Perl:
my $char = "\x{75C7}";
print $char; # Output: 症
PHP:
$char = "\x{75C7}";
echo $char; // Output: 症
Ruby:
char = "\u{75C7}"
puts char # Output: 症
Rust:
let c = '\u{75C7}';
println!("{}", c); // Output: 症
Go:
char := '\u75C7'
fmt.Printf("%c\n", char) // Output: 症
CSS:
/* CSS content property */
.element::before {
content: "\0075C7"; /* 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%97%87
MD5:
ef221c8959b7cda0e033226ebe70727d
SHA1:
3048f1b030e7567c1b860d288b8d05f4771414ac
Base64:
55eH