C:
char c = '\u7972';
printf("%c\n", c); // Output: 祲
JavaScript:
const char = '\u7972';
console.log(char); // Output: 祲
Java:
char c = '\u7972';
System.out.println(c); // Output: 祲
JSON:
{"text": "\u7972"} // Value: 祲
Python:
char = '\u7972'
print(char) # Output: 祲
Perl:
my $char = "\x{7972}";
print $char; # Output: 祲
PHP:
$char = "\x{7972}";
echo $char; // Output: 祲
Ruby:
char = "\u{7972}"
puts char # Output: 祲
Rust:
let c = '\u{7972}';
println!("{}", c); // Output: 祲
Go:
char := '\u7972'
fmt.Printf("%c\n", char) // Output: 祲
CSS:
/* CSS content property */
.element::before {
content: "\007972"; /* 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=%E7%A5%B2
MD5:
301269ed3a71fdc67b4ca1a04666bdc7
SHA1:
eb17a00d52fc9c54ed74bc0f5d69bbebb8c2818f
Base64:
56Wy