C:
char c = '\u7359';
printf("%c\n", c); // Output: 獙
JavaScript:
const char = '\u7359';
console.log(char); // Output: 獙
Java:
char c = '\u7359';
System.out.println(c); // Output: 獙
JSON:
{"text": "\u7359"} // Value: 獙
Python:
char = '\u7359'
print(char) # Output: 獙
Perl:
my $char = "\x{7359}";
print $char; # Output: 獙
PHP:
$char = "\x{7359}";
echo $char; // Output: 獙
Ruby:
char = "\u{7359}"
puts char # Output: 獙
Rust:
let c = '\u{7359}';
println!("{}", c); // Output: 獙
Go:
char := '\u7359'
fmt.Printf("%c\n", char) // Output: 獙
CSS:
/* CSS content property */
.element::before {
content: "\007359"; /* 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%8D%99
MD5:
63e91c433f62b78c33bfd5e6a1128da8
SHA1:
84ec5cd4b52a3a54ad97ba6ca913bce54a0aab12
Base64:
542Z