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