C:
char c = '\u7343';
printf("%c\n", c); // Output: 獃
JavaScript:
const char = '\u7343';
console.log(char); // Output: 獃
Java:
char c = '\u7343';
System.out.println(c); // Output: 獃
JSON:
{"text": "\u7343"} // Value: 獃
Python:
char = '\u7343'
print(char) # Output: 獃
Perl:
my $char = "\x{7343}";
print $char; # Output: 獃
PHP:
$char = "\x{7343}";
echo $char; // Output: 獃
Ruby:
char = "\u{7343}"
puts char # Output: 獃
Rust:
let c = '\u{7343}';
println!("{}", c); // Output: 獃
Go:
char := '\u7343'
fmt.Printf("%c\n", char) // Output: 獃
CSS:
/* CSS content property */
.element::before {
content: "\007343"; /* 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%83
MD5:
801c7fc0254d3674c1e2073ea5788342
SHA1:
cbcfd169c435e186eb671848da65f931093f54e9
Base64:
542D