C:
char c = '\u56F1';
printf("%c\n", c); // Output: 囱
JavaScript:
const char = '\u56F1';
console.log(char); // Output: 囱
Java:
char c = '\u56F1';
System.out.println(c); // Output: 囱
JSON:
{"text": "\u56F1"} // Value: 囱
Python:
char = '\u56F1'
print(char) # Output: 囱
Perl:
my $char = "\x{56F1}";
print $char; # Output: 囱
PHP:
$char = "\x{56F1}";
echo $char; // Output: 囱
Ruby:
char = "\u{56F1}"
puts char # Output: 囱
Rust:
let c = '\u{56F1}';
println!("{}", c); // Output: 囱
Go:
char := '\u56F1'
fmt.Printf("%c\n", char) // Output: 囱
CSS:
/* CSS content property */
.element::before {
content: "\0056F1"; /* 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%9B%B1
MD5:
b9f3fba541edcf53a318dfb0aea74138
SHA1:
eb0ab49ddad50df2441177c77e08969e33e893df
Base64:
5Zux