C:
char c = '\u6699';
printf("%c\n", c); // Output: 暙
JavaScript:
const char = '\u6699';
console.log(char); // Output: 暙
Java:
char c = '\u6699';
System.out.println(c); // Output: 暙
JSON:
{"text": "\u6699"} // Value: 暙
Python:
char = '\u6699'
print(char) # Output: 暙
Perl:
my $char = "\x{6699}";
print $char; # Output: 暙
PHP:
$char = "\x{6699}";
echo $char; // Output: 暙
Ruby:
char = "\u{6699}"
puts char # Output: 暙
Rust:
let c = '\u{6699}';
println!("{}", c); // Output: 暙
Go:
char := '\u6699'
fmt.Printf("%c\n", char) // Output: 暙
CSS:
/* CSS content property */
.element::before {
content: "\006699"; /* 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%9A%99
MD5:
8c5c764ae9e3bd4b5ef90f1b16811d9c
SHA1:
97a6bef653c4c6ea59404c7baf5a3dfdd923f290
Base64:
5pqZ