C:
char c = '\u7373';
printf("%c\n", c); // Output: 獳
JavaScript:
const char = '\u7373';
console.log(char); // Output: 獳
Java:
char c = '\u7373';
System.out.println(c); // Output: 獳
JSON:
{"text": "\u7373"} // Value: 獳
Python:
char = '\u7373'
print(char) # Output: 獳
Perl:
my $char = "\x{7373}";
print $char; # Output: 獳
PHP:
$char = "\x{7373}";
echo $char; // Output: 獳
Ruby:
char = "\u{7373}"
puts char # Output: 獳
Rust:
let c = '\u{7373}';
println!("{}", c); // Output: 獳
Go:
char := '\u7373'
fmt.Printf("%c\n", char) // Output: 獳
CSS:
/* CSS content property */
.element::before {
content: "\007373"; /* 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%B3
MD5:
c8dfcbcdc2d3b1cd48cd203eecf9e60e
SHA1:
8d07dc27afee184d688dd663e3714cf73a68197c
Base64:
542z