C:
char c = '\u7543';
printf("%c\n", c); // Output: 畃
JavaScript:
const char = '\u7543';
console.log(char); // Output: 畃
Java:
char c = '\u7543';
System.out.println(c); // Output: 畃
JSON:
{"text": "\u7543"} // Value: 畃
Python:
char = '\u7543'
print(char) # Output: 畃
Perl:
my $char = "\x{7543}";
print $char; # Output: 畃
PHP:
$char = "\x{7543}";
echo $char; // Output: 畃
Ruby:
char = "\u{7543}"
puts char # Output: 畃
Rust:
let c = '\u{7543}';
println!("{}", c); // Output: 畃
Go:
char := '\u7543'
fmt.Printf("%c\n", char) // Output: 畃
CSS:
/* CSS content property */
.element::before {
content: "\007543"; /* 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=%E7%95%83
MD5:
ff8981f3f01900ceb7df9ff31b0d3294
SHA1:
ac8b662c290cd2b85173052462ea8e73dd5a9e10
Base64:
55WD