C:
char c = '\u6987';
printf("%c\n", c); // Output: 榇
JavaScript:
const char = '\u6987';
console.log(char); // Output: 榇
Java:
char c = '\u6987';
System.out.println(c); // Output: 榇
JSON:
{"text": "\u6987"} // Value: 榇
Python:
char = '\u6987'
print(char) # Output: 榇
Perl:
my $char = "\x{6987}";
print $char; # Output: 榇
PHP:
$char = "\x{6987}";
echo $char; // Output: 榇
Ruby:
char = "\u{6987}"
puts char # Output: 榇
Rust:
let c = '\u{6987}';
println!("{}", c); // Output: 榇
Go:
char := '\u6987'
fmt.Printf("%c\n", char) // Output: 榇
CSS:
/* CSS content property */
.element::before {
content: "\006987"; /* 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%A6%87
MD5:
48bd431daf93b9350749c90995b8d178
SHA1:
14be3007dffc0cc8ffcb081e370a70ce78e34e93
Base64:
5qaH