C:
char c = '\u5E2C';
printf("%c\n", c); // Output: 帬
JavaScript:
const char = '\u5E2C';
console.log(char); // Output: 帬
Java:
char c = '\u5E2C';
System.out.println(c); // Output: 帬
JSON:
{"text": "\u5E2C"} // Value: 帬
Python:
char = '\u5E2C'
print(char) # Output: 帬
Perl:
my $char = "\x{5E2C}";
print $char; # Output: 帬
PHP:
$char = "\x{5E2C}";
echo $char; // Output: 帬
Ruby:
char = "\u{5E2C}"
puts char # Output: 帬
Rust:
let c = '\u{5E2C}';
println!("{}", c); // Output: 帬
Go:
char := '\u5E2C'
fmt.Printf("%c\n", char) // Output: 帬
CSS:
/* CSS content property */
.element::before {
content: "\005E2C"; /* 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%AC
MD5:
034d7ea23568045c4a0c9bd5db0f26b9
SHA1:
27a365e134cc5aa3c6f281b3bfe8e731552f8f07
Base64:
5bis