C:
char c = '\u7680';
printf("%c\n", c); // Output: 皀
JavaScript:
const char = '\u7680';
console.log(char); // Output: 皀
Java:
char c = '\u7680';
System.out.println(c); // Output: 皀
JSON:
{"text": "\u7680"} // Value: 皀
Python:
char = '\u7680'
print(char) # Output: 皀
Perl:
my $char = "\x{7680}";
print $char; # Output: 皀
PHP:
$char = "\x{7680}";
echo $char; // Output: 皀
Ruby:
char = "\u{7680}"
puts char # Output: 皀
Rust:
let c = '\u{7680}';
println!("{}", c); // Output: 皀
Go:
char := '\u7680'
fmt.Printf("%c\n", char) // Output: 皀
CSS:
/* CSS content property */
.element::before {
content: "\007680"; /* 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%80
MD5:
c9ffa127ab90f50388c476abcfeb10f6
SHA1:
b28929a9dba35d31e4064e162110bb3c1bd519e0
Base64:
55qA