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