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