C:
char c = '\u6716';
printf("%c\n", c); // Output: 朖
JavaScript:
const char = '\u6716';
console.log(char); // Output: 朖
Java:
char c = '\u6716';
System.out.println(c); // Output: 朖
JSON:
{"text": "\u6716"} // Value: 朖
Python:
char = '\u6716'
print(char) # Output: 朖
Perl:
my $char = "\x{6716}";
print $char; # Output: 朖
PHP:
$char = "\x{6716}";
echo $char; // Output: 朖
Ruby:
char = "\u{6716}"
puts char # Output: 朖
Rust:
let c = '\u{6716}';
println!("{}", c); // Output: 朖
Go:
char := '\u6716'
fmt.Printf("%c\n", char) // Output: 朖
CSS:
/* CSS content property */
.element::before {
content: "\006716"; /* 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%9C%96
MD5:
4b57aed11ae577aeaa8a61cdcaf8e36b
SHA1:
11e0fdc90445d169709fec5d534bcf69048fe912
Base64:
5pyW