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