C:
char c = '\u7867';
printf("%c\n", c); // Output: 硧
JavaScript:
const char = '\u7867';
console.log(char); // Output: 硧
Java:
char c = '\u7867';
System.out.println(c); // Output: 硧
JSON:
{"text": "\u7867"} // Value: 硧
Python:
char = '\u7867'
print(char) # Output: 硧
Perl:
my $char = "\x{7867}";
print $char; # Output: 硧
PHP:
$char = "\x{7867}";
echo $char; // Output: 硧
Ruby:
char = "\u{7867}"
puts char # Output: 硧
Rust:
let c = '\u{7867}';
println!("{}", c); // Output: 硧
Go:
char := '\u7867'
fmt.Printf("%c\n", char) // Output: 硧
CSS:
/* CSS content property */
.element::before {
content: "\007867"; /* 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%A7
MD5:
c42269c7ae724faded5e00908f96893d
SHA1:
9fddd65bc4f92b5bea0cba2319359d1b2e555911
Base64:
56Gn