C:
char c = '\u7861';
printf("%c\n", c); // Output: 硡
JavaScript:
const char = '\u7861';
console.log(char); // Output: 硡
Java:
char c = '\u7861';
System.out.println(c); // Output: 硡
JSON:
{"text": "\u7861"} // Value: 硡
Python:
char = '\u7861'
print(char) # Output: 硡
Perl:
my $char = "\x{7861}";
print $char; # Output: 硡
PHP:
$char = "\x{7861}";
echo $char; // Output: 硡
Ruby:
char = "\u{7861}"
puts char # Output: 硡
Rust:
let c = '\u{7861}';
println!("{}", c); // Output: 硡
Go:
char := '\u7861'
fmt.Printf("%c\n", char) // Output: 硡
CSS:
/* CSS content property */
.element::before {
content: "\007861"; /* 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%A1
MD5:
500029d8012854cb06d33effef615e97
SHA1:
0e746c89a1726c852a0e89faac2a794cb9824ae5
Base64:
56Gh