C:
char c = '\u6B94';
printf("%c\n", c); // Output: 殔
JavaScript:
const char = '\u6B94';
console.log(char); // Output: 殔
Java:
char c = '\u6B94';
System.out.println(c); // Output: 殔
JSON:
{"text": "\u6B94"} // Value: 殔
Python:
char = '\u6B94'
print(char) # Output: 殔
Perl:
my $char = "\x{6B94}";
print $char; # Output: 殔
PHP:
$char = "\x{6B94}";
echo $char; // Output: 殔
Ruby:
char = "\u{6B94}"
puts char # Output: 殔
Rust:
let c = '\u{6B94}';
println!("{}", c); // Output: 殔
Go:
char := '\u6B94'
fmt.Printf("%c\n", char) // Output: 殔
CSS:
/* CSS content property */
.element::before {
content: "\006B94"; /* 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%AE%94
MD5:
eff9a5d155c71eb4d9a7b482f01768c7
SHA1:
ea744df990eff39cf01e5924a009607e55767bd1
Base64:
5q6U