C:
char c = '\u5486';
printf("%c\n", c); // Output: 咆
JavaScript:
const char = '\u5486';
console.log(char); // Output: 咆
Java:
char c = '\u5486';
System.out.println(c); // Output: 咆
JSON:
{"text": "\u5486"} // Value: 咆
Python:
char = '\u5486'
print(char) # Output: 咆
Perl:
my $char = "\x{5486}";
print $char; # Output: 咆
PHP:
$char = "\x{5486}";
echo $char; // Output: 咆
Ruby:
char = "\u{5486}"
puts char # Output: 咆
Rust:
let c = '\u{5486}';
println!("{}", c); // Output: 咆
Go:
char := '\u5486'
fmt.Printf("%c\n", char) // Output: 咆
CSS:
/* CSS content property */
.element::before {
content: "\005486"; /* 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%92%86
MD5:
0eb3990b39651fafd039628045890673
SHA1:
0228d99b865df1cf99d00f60985c12f4074f8d49
Base64:
5ZKG