C:
char c = '\u7309';
printf("%c\n", c); // Output: 猉
JavaScript:
const char = '\u7309';
console.log(char); // Output: 猉
Java:
char c = '\u7309';
System.out.println(c); // Output: 猉
JSON:
{"text": "\u7309"} // Value: 猉
Python:
char = '\u7309'
print(char) # Output: 猉
Perl:
my $char = "\x{7309}";
print $char; # Output: 猉
PHP:
$char = "\x{7309}";
echo $char; // Output: 猉
Ruby:
char = "\u{7309}"
puts char # Output: 猉
Rust:
let c = '\u{7309}';
println!("{}", c); // Output: 猉
Go:
char := '\u7309'
fmt.Printf("%c\n", char) // Output: 猉
CSS:
/* CSS content property */
.element::before {
content: "\007309"; /* 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%8C%89
MD5:
f19dda8501306dcc6af1c5c7e0e69692
SHA1:
8429aebb032528d4f3207d5d407e6415ab48d601
Base64:
54yJ