C:
char c = '\u6711';
printf("%c\n", c); // Output: 朑
JavaScript:
const char = '\u6711';
console.log(char); // Output: 朑
Java:
char c = '\u6711';
System.out.println(c); // Output: 朑
JSON:
{"text": "\u6711"} // Value: 朑
Python:
char = '\u6711'
print(char) # Output: 朑
Perl:
my $char = "\x{6711}";
print $char; # Output: 朑
PHP:
$char = "\x{6711}";
echo $char; // Output: 朑
Ruby:
char = "\u{6711}"
puts char # Output: 朑
Rust:
let c = '\u{6711}';
println!("{}", c); // Output: 朑
Go:
char := '\u6711'
fmt.Printf("%c\n", char) // Output: 朑
CSS:
/* CSS content property */
.element::before {
content: "\006711"; /* 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%91
MD5:
0a34deb55dfc783f8fe22b9851083723
SHA1:
14a5d4bb649b962d9a2accf6050ffce31652aa09
Base64:
5pyR