C:
char c = '\u6248';
printf("%c\n", c); // Output: 扈
JavaScript:
const char = '\u6248';
console.log(char); // Output: 扈
Java:
char c = '\u6248';
System.out.println(c); // Output: 扈
JSON:
{"text": "\u6248"} // Value: 扈
Python:
char = '\u6248'
print(char) # Output: 扈
Perl:
my $char = "\x{6248}";
print $char; # Output: 扈
PHP:
$char = "\x{6248}";
echo $char; // Output: 扈
Ruby:
char = "\u{6248}"
puts char # Output: 扈
Rust:
let c = '\u{6248}';
println!("{}", c); // Output: 扈
Go:
char := '\u6248'
fmt.Printf("%c\n", char) // Output: 扈
CSS:
/* CSS content property */
.element::before {
content: "\006248"; /* 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=%E6%89%88
MD5:
3c3508713e64934eac73209d4c4b0c02
SHA1:
155b1cff3a96870895221c586dac075e61e2ded1
Base64:
5omI