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