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