C:
char c = '\u6680';
printf("%c\n", c); // Output: 暀
JavaScript:
const char = '\u6680';
console.log(char); // Output: 暀
Java:
char c = '\u6680';
System.out.println(c); // Output: 暀
JSON:
{"text": "\u6680"} // Value: 暀
Python:
char = '\u6680'
print(char) # Output: 暀
Perl:
my $char = "\x{6680}";
print $char; # Output: 暀
PHP:
$char = "\x{6680}";
echo $char; // Output: 暀
Ruby:
char = "\u{6680}"
puts char # Output: 暀
Rust:
let c = '\u{6680}';
println!("{}", c); // Output: 暀
Go:
char := '\u6680'
fmt.Printf("%c\n", char) // Output: 暀
CSS:
/* CSS content property */
.element::before {
content: "\006680"; /* 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%80
MD5:
642711fba47b03a525473f0f7d614ec7
SHA1:
8ab92a08eb93f5330dcfbf00576bcca7a3d2b52b
Base64:
5pqA