C:
char c = '\u7300';
printf("%c\n", c); // Output: 猀
JavaScript:
const char = '\u7300';
console.log(char); // Output: 猀
Java:
char c = '\u7300';
System.out.println(c); // Output: 猀
JSON:
{"text": "\u7300"} // Value: 猀
Python:
char = '\u7300'
print(char) # Output: 猀
Perl:
my $char = "\x{7300}";
print $char; # Output: 猀
PHP:
$char = "\x{7300}";
echo $char; // Output: 猀
Ruby:
char = "\u{7300}"
puts char # Output: 猀
Rust:
let c = '\u{7300}';
println!("{}", c); // Output: 猀
Go:
char := '\u7300'
fmt.Printf("%c\n", char) // Output: 猀
CSS:
/* CSS content property */
.element::before {
content: "\007300"; /* 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%80
MD5:
b2357aee19c79b1311719293e2e07bae
SHA1:
ee9cfa37f348b2cc9b611d02d4ec815af720bbea
Base64:
54yA