C:
char c = '\u6981';
printf("%c\n", c); // Output: 榁
JavaScript:
const char = '\u6981';
console.log(char); // Output: 榁
Java:
char c = '\u6981';
System.out.println(c); // Output: 榁
JSON:
{"text": "\u6981"} // Value: 榁
Python:
char = '\u6981'
print(char) # Output: 榁
Perl:
my $char = "\x{6981}";
print $char; # Output: 榁
PHP:
$char = "\x{6981}";
echo $char; // Output: 榁
Ruby:
char = "\u{6981}"
puts char # Output: 榁
Rust:
let c = '\u{6981}';
println!("{}", c); // Output: 榁
Go:
char := '\u6981'
fmt.Printf("%c\n", char) // Output: 榁
CSS:
/* CSS content property */
.element::before {
content: "\006981"; /* 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%81
MD5:
78538072a7a34200167095988ff84717
SHA1:
ac44fe45aba6f17b1af14f38e8ccba33ec67b8e3
Base64:
5qaB