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