C:
char c = '\u6422';
printf("%c\n", c); // Output: 搢
JavaScript:
const char = '\u6422';
console.log(char); // Output: 搢
Java:
char c = '\u6422';
System.out.println(c); // Output: 搢
JSON:
{"text": "\u6422"} // Value: 搢
Python:
char = '\u6422'
print(char) # Output: 搢
Perl:
my $char = "\x{6422}";
print $char; # Output: 搢
PHP:
$char = "\x{6422}";
echo $char; // Output: 搢
Ruby:
char = "\u{6422}"
puts char # Output: 搢
Rust:
let c = '\u{6422}';
println!("{}", c); // Output: 搢
Go:
char := '\u6422'
fmt.Printf("%c\n", char) // Output: 搢
CSS:
/* CSS content property */
.element::before {
content: "\006422"; /* 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%90%A2
MD5:
8612544e7653b7d1ffb2f107008e299b
SHA1:
fdb51354e51c837bdaa30ac784d7f56163320ba2
Base64:
5pCi