C:
char c = '\u7346';
printf("%c\n", c); // Output: 獆
JavaScript:
const char = '\u7346';
console.log(char); // Output: 獆
Java:
char c = '\u7346';
System.out.println(c); // Output: 獆
JSON:
{"text": "\u7346"} // Value: 獆
Python:
char = '\u7346'
print(char) # Output: 獆
Perl:
my $char = "\x{7346}";
print $char; # Output: 獆
PHP:
$char = "\x{7346}";
echo $char; // Output: 獆
Ruby:
char = "\u{7346}"
puts char # Output: 獆
Rust:
let c = '\u{7346}';
println!("{}", c); // Output: 獆
Go:
char := '\u7346'
fmt.Printf("%c\n", char) // Output: 獆
CSS:
/* CSS content property */
.element::before {
content: "\007346"; /* 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%86
MD5:
f4f861b8e53704590abce852d3b3a1d0
SHA1:
81d3efd84aefdd834256999065cd663b4a97290c
Base64:
542G