C:
char c = '\u5E1C';
printf("%c\n", c); // Output: 帜
JavaScript:
const char = '\u5E1C';
console.log(char); // Output: 帜
Java:
char c = '\u5E1C';
System.out.println(c); // Output: 帜
JSON:
{"text": "\u5E1C"} // Value: 帜
Python:
char = '\u5E1C'
print(char) # Output: 帜
Perl:
my $char = "\x{5E1C}";
print $char; # Output: 帜
PHP:
$char = "\x{5E1C}";
echo $char; // Output: 帜
Ruby:
char = "\u{5E1C}"
puts char # Output: 帜
Rust:
let c = '\u{5E1C}';
println!("{}", c); // Output: 帜
Go:
char := '\u5E1C'
fmt.Printf("%c\n", char) // Output: 帜
CSS:
/* CSS content property */
.element::before {
content: "\005E1C"; /* 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%B8%9C
MD5:
4231d78330e93caa59f37e02cfe6c603
SHA1:
cded0d3566b0445fa7b125aa3009a42cbafe64d9
Base64:
5bic