C:
char c = '\u7583';
printf("%c\n", c); // Output: 疃
JavaScript:
const char = '\u7583';
console.log(char); // Output: 疃
Java:
char c = '\u7583';
System.out.println(c); // Output: 疃
JSON:
{"text": "\u7583"} // Value: 疃
Python:
char = '\u7583'
print(char) # Output: 疃
Perl:
my $char = "\x{7583}";
print $char; # Output: 疃
PHP:
$char = "\x{7583}";
echo $char; // Output: 疃
Ruby:
char = "\u{7583}"
puts char # Output: 疃
Rust:
let c = '\u{7583}';
println!("{}", c); // Output: 疃
Go:
char := '\u7583'
fmt.Printf("%c\n", char) // Output: 疃
CSS:
/* CSS content property */
.element::before {
content: "\007583"; /* 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%96%83
MD5:
577c72ae42ee882740641a008a11829a
SHA1:
dbccb44447ffe389507d0baaf33d34c156d546c1
Base64:
55aD