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