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