C:
char c = '\u6921';
printf("%c\n", c); // Output: 椡
JavaScript:
const char = '\u6921';
console.log(char); // Output: 椡
Java:
char c = '\u6921';
System.out.println(c); // Output: 椡
JSON:
{"text": "\u6921"} // Value: 椡
Python:
char = '\u6921'
print(char) # Output: 椡
Perl:
my $char = "\x{6921}";
print $char; # Output: 椡
PHP:
$char = "\x{6921}";
echo $char; // Output: 椡
Ruby:
char = "\u{6921}"
puts char # Output: 椡
Rust:
let c = '\u{6921}';
println!("{}", c); // Output: 椡
Go:
char := '\u6921'
fmt.Printf("%c\n", char) // Output: 椡
CSS:
/* CSS content property */
.element::before {
content: "\006921"; /* 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%A4%A1
MD5:
b16f8cd27519efb7080cdadb7429e47d
SHA1:
4c9ded826fdbaf8e64a11dbd3efeeba4bac31327
Base64:
5qSh