C:
char c = '\u5308';
printf("%c\n", c); // Output: 匈
JavaScript:
const char = '\u5308';
console.log(char); // Output: 匈
Java:
char c = '\u5308';
System.out.println(c); // Output: 匈
JSON:
{"text": "\u5308"} // Value: 匈
Python:
char = '\u5308'
print(char) # Output: 匈
Perl:
my $char = "\x{5308}";
print $char; # Output: 匈
PHP:
$char = "\x{5308}";
echo $char; // Output: 匈
Ruby:
char = "\u{5308}"
puts char # Output: 匈
Rust:
let c = '\u{5308}';
println!("{}", c); // Output: 匈
Go:
char := '\u5308'
fmt.Printf("%c\n", char) // Output: 匈
CSS:
/* CSS content property */
.element::before {
content: "\005308"; /* 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%8C%88
MD5:
7ad7943dffbdb42844a516d0f590ad0e
SHA1:
3719980514c0c9dd7148d7e29571dac7e8a0586d
Base64:
5YyI