C:
char c = '\u6602';
printf("%c\n", c); // Output: 昂
JavaScript:
const char = '\u6602';
console.log(char); // Output: 昂
Java:
char c = '\u6602';
System.out.println(c); // Output: 昂
JSON:
{"text": "\u6602"} // Value: 昂
Python:
char = '\u6602'
print(char) # Output: 昂
Perl:
my $char = "\x{6602}";
print $char; # Output: 昂
PHP:
$char = "\x{6602}";
echo $char; // Output: 昂
Ruby:
char = "\u{6602}"
puts char # Output: 昂
Rust:
let c = '\u{6602}';
println!("{}", c); // Output: 昂
Go:
char := '\u6602'
fmt.Printf("%c\n", char) // Output: 昂
CSS:
/* CSS content property */
.element::before {
content: "\006602"; /* 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=%E6%98%82
MD5:
99e781766adc78ed0612213a60e1d448
SHA1:
cb2747af180c20566c7b0e28cf16afe6df212c30
Base64:
5piC