C:
char c = '\u6452';
printf("%c\n", c); // Output: 摒
JavaScript:
const char = '\u6452';
console.log(char); // Output: 摒
Java:
char c = '\u6452';
System.out.println(c); // Output: 摒
JSON:
{"text": "\u6452"} // Value: 摒
Python:
char = '\u6452'
print(char) # Output: 摒
Perl:
my $char = "\x{6452}";
print $char; # Output: 摒
PHP:
$char = "\x{6452}";
echo $char; // Output: 摒
Ruby:
char = "\u{6452}"
puts char # Output: 摒
Rust:
let c = '\u{6452}';
println!("{}", c); // Output: 摒
Go:
char := '\u6452'
fmt.Printf("%c\n", char) // Output: 摒
CSS:
/* CSS content property */
.element::before {
content: "\006452"; /* 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%91%92
MD5:
3c054adf26653921ed093073bcd9172f
SHA1:
1b820e8d34e6ed6c3e0e5a9c5d39616c5e6f755e
Base64:
5pGS