C:
char c = '\u5354';
printf("%c\n", c); // Output: 協
JavaScript:
const char = '\u5354';
console.log(char); // Output: 協
Java:
char c = '\u5354';
System.out.println(c); // Output: 協
JSON:
{"text": "\u5354"} // Value: 協
Python:
char = '\u5354'
print(char) # Output: 協
Perl:
my $char = "\x{5354}";
print $char; # Output: 協
PHP:
$char = "\x{5354}";
echo $char; // Output: 協
Ruby:
char = "\u{5354}"
puts char # Output: 協
Rust:
let c = '\u{5354}';
println!("{}", c); // Output: 協
Go:
char := '\u5354'
fmt.Printf("%c\n", char) // Output: 協
CSS:
/* CSS content property */
.element::before {
content: "\005354"; /* 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%8D%94
MD5:
e8c4fd303ab805627038c355f42a5f79
SHA1:
e0677954f9c7dd8b2afbc3eae12f790b8bf02178
Base64:
5Y2U