C:
char c = '\u7358';
printf("%c\n", c); // Output: 獘
JavaScript:
const char = '\u7358';
console.log(char); // Output: 獘
Java:
char c = '\u7358';
System.out.println(c); // Output: 獘
JSON:
{"text": "\u7358"} // Value: 獘
Python:
char = '\u7358'
print(char) # Output: 獘
Perl:
my $char = "\x{7358}";
print $char; # Output: 獘
PHP:
$char = "\x{7358}";
echo $char; // Output: 獘
Ruby:
char = "\u{7358}"
puts char # Output: 獘
Rust:
let c = '\u{7358}';
println!("{}", c); // Output: 獘
Go:
char := '\u7358'
fmt.Printf("%c\n", char) // Output: 獘
CSS:
/* CSS content property */
.element::before {
content: "\007358"; /* 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%98
MD5:
33c5fccfe0deed2609b1b591aaa4a82a
SHA1:
5c724f2e6d550fd452f1e689deb411d00a626a06
Base64:
542Y