C:
char c = '\u7685';
printf("%c\n", c); // Output: 皅
JavaScript:
const char = '\u7685';
console.log(char); // Output: 皅
Java:
char c = '\u7685';
System.out.println(c); // Output: 皅
JSON:
{"text": "\u7685"} // Value: 皅
Python:
char = '\u7685'
print(char) # Output: 皅
Perl:
my $char = "\x{7685}";
print $char; # Output: 皅
PHP:
$char = "\x{7685}";
echo $char; // Output: 皅
Ruby:
char = "\u{7685}"
puts char # Output: 皅
Rust:
let c = '\u{7685}';
println!("{}", c); // Output: 皅
Go:
char := '\u7685'
fmt.Printf("%c\n", char) // Output: 皅
CSS:
/* CSS content property */
.element::before {
content: "\007685"; /* 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%85
MD5:
bb3a49c8b4ef40d09c261e4d3d76f9e5
SHA1:
7689c561948670dbcaff373f79ddc1dd85637077
Base64:
55qF