C:
char c = '\u6609';
printf("%c\n", c); // Output: 昉
JavaScript:
const char = '\u6609';
console.log(char); // Output: 昉
Java:
char c = '\u6609';
System.out.println(c); // Output: 昉
JSON:
{"text": "\u6609"} // Value: 昉
Python:
char = '\u6609'
print(char) # Output: 昉
Perl:
my $char = "\x{6609}";
print $char; # Output: 昉
PHP:
$char = "\x{6609}";
echo $char; // Output: 昉
Ruby:
char = "\u{6609}"
puts char # Output: 昉
Rust:
let c = '\u{6609}';
println!("{}", c); // Output: 昉
Go:
char := '\u6609'
fmt.Printf("%c\n", char) // Output: 昉
CSS:
/* CSS content property */
.element::before {
content: "\006609"; /* 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%89
MD5:
386edc88176c8f890498c579aab7255b
SHA1:
82c147eca57736712311a57b0d0a7e147ca32e6d
Base64:
5piJ