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