C:
char c = '\u56A7';
printf("%c\n", c); // Output: 嚧
JavaScript:
const char = '\u56A7';
console.log(char); // Output: 嚧
Java:
char c = '\u56A7';
System.out.println(c); // Output: 嚧
JSON:
{"text": "\u56A7"} // Value: 嚧
Python:
char = '\u56A7'
print(char) # Output: 嚧
Perl:
my $char = "\x{56A7}";
print $char; # Output: 嚧
PHP:
$char = "\x{56A7}";
echo $char; // Output: 嚧
Ruby:
char = "\u{56A7}"
puts char # Output: 嚧
Rust:
let c = '\u{56A7}';
println!("{}", c); // Output: 嚧
Go:
char := '\u56A7'
fmt.Printf("%c\n", char) // Output: 嚧
CSS:
/* CSS content property */
.element::before {
content: "\0056A7"; /* 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=%E5%9A%A7
MD5:
4828da6a365e6f3219d4663b81ecf9a8
SHA1:
82c59aca1a40db2f51a7569f5e707d2ce0eda4c3
Base64:
5Zqn