C:
char c = '\u6686';
printf("%c\n", c); // Output: 暆
JavaScript:
const char = '\u6686';
console.log(char); // Output: 暆
Java:
char c = '\u6686';
System.out.println(c); // Output: 暆
JSON:
{"text": "\u6686"} // Value: 暆
Python:
char = '\u6686'
print(char) # Output: 暆
Perl:
my $char = "\x{6686}";
print $char; # Output: 暆
PHP:
$char = "\x{6686}";
echo $char; // Output: 暆
Ruby:
char = "\u{6686}"
puts char # Output: 暆
Rust:
let c = '\u{6686}';
println!("{}", c); // Output: 暆
Go:
char := '\u6686'
fmt.Printf("%c\n", char) // Output: 暆
CSS:
/* CSS content property */
.element::before {
content: "\006686"; /* 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%86
MD5:
17135343eb75cd2452ae177c75c291d0
SHA1:
f960ac62cc0c070eedc8fb6eb6689fb216adb615
Base64:
5pqG