C:
char c = '\u7581';
printf("%c\n", c); // Output: 疁
JavaScript:
const char = '\u7581';
console.log(char); // Output: 疁
Java:
char c = '\u7581';
System.out.println(c); // Output: 疁
JSON:
{"text": "\u7581"} // Value: 疁
Python:
char = '\u7581'
print(char) # Output: 疁
Perl:
my $char = "\x{7581}";
print $char; # Output: 疁
PHP:
$char = "\x{7581}";
echo $char; // Output: 疁
Ruby:
char = "\u{7581}"
puts char # Output: 疁
Rust:
let c = '\u{7581}';
println!("{}", c); // Output: 疁
Go:
char := '\u7581'
fmt.Printf("%c\n", char) // Output: 疁
CSS:
/* CSS content property */
.element::before {
content: "\007581"; /* 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%81
MD5:
78a49c9b878f0546dd8c6945a60b15f4
SHA1:
4b20ade25fb56daac207963610cf3f0599ae02ef
Base64:
55aB