C:
char c = '\u7681';
printf("%c\n", c); // Output: 皁
JavaScript:
const char = '\u7681';
console.log(char); // Output: 皁
Java:
char c = '\u7681';
System.out.println(c); // Output: 皁
JSON:
{"text": "\u7681"} // Value: 皁
Python:
char = '\u7681'
print(char) # Output: 皁
Perl:
my $char = "\x{7681}";
print $char; # Output: 皁
PHP:
$char = "\x{7681}";
echo $char; // Output: 皁
Ruby:
char = "\u{7681}"
puts char # Output: 皁
Rust:
let c = '\u{7681}';
println!("{}", c); // Output: 皁
Go:
char := '\u7681'
fmt.Printf("%c\n", char) // Output: 皁
CSS:
/* CSS content property */
.element::before {
content: "\007681"; /* 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%9A%81
MD5:
a102f04255ab8092ac7b44b486a0e468
SHA1:
428e4b4773d2c906aad480aed001f5d74b9219af
Base64:
55qB