C:
char c = '\u7848';
printf("%c\n", c); // Output: 硈
JavaScript:
const char = '\u7848';
console.log(char); // Output: 硈
Java:
char c = '\u7848';
System.out.println(c); // Output: 硈
JSON:
{"text": "\u7848"} // Value: 硈
Python:
char = '\u7848'
print(char) # Output: 硈
Perl:
my $char = "\x{7848}";
print $char; # Output: 硈
PHP:
$char = "\x{7848}";
echo $char; // Output: 硈
Ruby:
char = "\u{7848}"
puts char # Output: 硈
Rust:
let c = '\u{7848}';
println!("{}", c); // Output: 硈
Go:
char := '\u7848'
fmt.Printf("%c\n", char) // Output: 硈
CSS:
/* CSS content property */
.element::before {
content: "\007848"; /* 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%88
MD5:
3ba4283ff5c4644d8a9daa15dc4af0de
SHA1:
e1f98905eafbca1b905001e9fd901f2648abda68
Base64:
56GI