C:
char c = '\u7347';
printf("%c\n", c); // Output: 獇
JavaScript:
const char = '\u7347';
console.log(char); // Output: 獇
Java:
char c = '\u7347';
System.out.println(c); // Output: 獇
JSON:
{"text": "\u7347"} // Value: 獇
Python:
char = '\u7347'
print(char) # Output: 獇
Perl:
my $char = "\x{7347}";
print $char; # Output: 獇
PHP:
$char = "\x{7347}";
echo $char; // Output: 獇
Ruby:
char = "\u{7347}"
puts char # Output: 獇
Rust:
let c = '\u{7347}';
println!("{}", c); // Output: 獇
Go:
char := '\u7347'
fmt.Printf("%c\n", char) // Output: 獇
CSS:
/* CSS content property */
.element::before {
content: "\007347"; /* 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%87
MD5:
9344f395c2541f23c9c1e0f9507ced4d
SHA1:
da8cb54688c7b09ac780f6fc750be51dcfc1eae1
Base64:
542H