C:
char c = '\u7946';
printf("%c\n", c); // Output: 祆
JavaScript:
const char = '\u7946';
console.log(char); // Output: 祆
Java:
char c = '\u7946';
System.out.println(c); // Output: 祆
JSON:
{"text": "\u7946"} // Value: 祆
Python:
char = '\u7946'
print(char) # Output: 祆
Perl:
my $char = "\x{7946}";
print $char; # Output: 祆
PHP:
$char = "\x{7946}";
echo $char; // Output: 祆
Ruby:
char = "\u{7946}"
puts char # Output: 祆
Rust:
let c = '\u{7946}';
println!("{}", c); // Output: 祆
Go:
char := '\u7946'
fmt.Printf("%c\n", char) // Output: 祆
CSS:
/* CSS content property */
.element::before {
content: "\007946"; /* 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%86
MD5:
7d5434802d82ce604072245ebaa954cf
SHA1:
94ce5c8b95cfc2025f0eff1914ec95101a55408c
Base64:
56WG