C:
char c = '\u7863';
printf("%c\n", c); // Output: 硣
JavaScript:
const char = '\u7863';
console.log(char); // Output: 硣
Java:
char c = '\u7863';
System.out.println(c); // Output: 硣
JSON:
{"text": "\u7863"} // Value: 硣
Python:
char = '\u7863'
print(char) # Output: 硣
Perl:
my $char = "\x{7863}";
print $char; # Output: 硣
PHP:
$char = "\x{7863}";
echo $char; // Output: 硣
Ruby:
char = "\u{7863}"
puts char # Output: 硣
Rust:
let c = '\u{7863}';
println!("{}", c); // Output: 硣
Go:
char := '\u7863'
fmt.Printf("%c\n", char) // Output: 硣
CSS:
/* CSS content property */
.element::before {
content: "\007863"; /* 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%A3
MD5:
57dad9e27bd65ad5dfa49c283726a185
SHA1:
d320461b3b750dda62c82fce432de13f9824bc4f
Base64:
56Gj