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