C:
char c = '\u9996';
printf("%c\n", c); // Output: 首
JavaScript:
const char = '\u9996';
console.log(char); // Output: 首
Java:
char c = '\u9996';
System.out.println(c); // Output: 首
JSON:
{"text": "\u9996"} // Value: 首
Python:
char = '\u9996'
print(char) # Output: 首
Perl:
my $char = "\x{9996}";
print $char; # Output: 首
PHP:
$char = "\x{9996}";
echo $char; // Output: 首
Ruby:
char = "\u{9996}"
puts char # Output: 首
Rust:
let c = '\u{9996}';
println!("{}", c); // Output: 首
Go:
char := '\u9996'
fmt.Printf("%c\n", char) // Output: 首
CSS:
/* CSS content property */
.element::before {
content: "\009996"; /* 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=%E9%A6%96
MD5:
ef67981a2bbecddd668d9e960790912f
SHA1:
fe7df3634ec6fb3a59ec41d9ba7aff7fa1fd8109
Base64:
6aaW