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