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