C:
char c = '\u79E1';
printf("%c\n", c); // Output: 秡
JavaScript:
const char = '\u79E1';
console.log(char); // Output: 秡
Java:
char c = '\u79E1';
System.out.println(c); // Output: 秡
JSON:
{"text": "\u79E1"} // Value: 秡
Python:
char = '\u79E1'
print(char) # Output: 秡
Perl:
my $char = "\x{79E1}";
print $char; # Output: 秡
PHP:
$char = "\x{79E1}";
echo $char; // Output: 秡
Ruby:
char = "\u{79E1}"
puts char # Output: 秡
Rust:
let c = '\u{79E1}';
println!("{}", c); // Output: 秡
Go:
char := '\u79E1'
fmt.Printf("%c\n", char) // Output: 秡
CSS:
/* CSS content property */
.element::before {
content: "\0079E1"; /* 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%A7%A1
MD5:
c3e17c5a718959f662cec25fb82f9650
SHA1:
3bc48d8698de3c7dc29ff7518cb5d15d96b5dc56
Base64:
56eh