C:
char c = '\u7860';
printf("%c\n", c); // Output: 硠
JavaScript:
const char = '\u7860';
console.log(char); // Output: 硠
Java:
char c = '\u7860';
System.out.println(c); // Output: 硠
JSON:
{"text": "\u7860"} // Value: 硠
Python:
char = '\u7860'
print(char) # Output: 硠
Perl:
my $char = "\x{7860}";
print $char; # Output: 硠
PHP:
$char = "\x{7860}";
echo $char; // Output: 硠
Ruby:
char = "\u{7860}"
puts char # Output: 硠
Rust:
let c = '\u{7860}';
println!("{}", c); // Output: 硠
Go:
char := '\u7860'
fmt.Printf("%c\n", char) // Output: 硠
CSS:
/* CSS content property */
.element::before {
content: "\007860"; /* 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%A1%A0
MD5:
92f7f5de1f49b2525b81c2cfa823b202
SHA1:
c815b09d288f7c98e21bc7ffa78eca9a1edb85d8
Base64:
56Gg