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