C:
char c = '\u7847';
printf("%c\n", c); // Output: 硇
JavaScript:
const char = '\u7847';
console.log(char); // Output: 硇
Java:
char c = '\u7847';
System.out.println(c); // Output: 硇
JSON:
{"text": "\u7847"} // Value: 硇
Python:
char = '\u7847'
print(char) # Output: 硇
Perl:
my $char = "\x{7847}";
print $char; # Output: 硇
PHP:
$char = "\x{7847}";
echo $char; // Output: 硇
Ruby:
char = "\u{7847}"
puts char # Output: 硇
Rust:
let c = '\u{7847}';
println!("{}", c); // Output: 硇
Go:
char := '\u7847'
fmt.Printf("%c\n", char) // Output: 硇
CSS:
/* CSS content property */
.element::before {
content: "\007847"; /* 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%87
MD5:
02032f21f6955e47ef8f7551b2275d4a
SHA1:
feec1718b650b4d2c9a41128ceffa8bb04d3cfd9
Base64:
56GH