C:
char c = '\u7289';
printf("%c\n", c); // Output: 犉
JavaScript:
const char = '\u7289';
console.log(char); // Output: 犉
Java:
char c = '\u7289';
System.out.println(c); // Output: 犉
JSON:
{"text": "\u7289"} // Value: 犉
Python:
char = '\u7289'
print(char) # Output: 犉
Perl:
my $char = "\x{7289}";
print $char; # Output: 犉
PHP:
$char = "\x{7289}";
echo $char; // Output: 犉
Ruby:
char = "\u{7289}"
puts char # Output: 犉
Rust:
let c = '\u{7289}';
println!("{}", c); // Output: 犉
Go:
char := '\u7289'
fmt.Printf("%c\n", char) // Output: 犉
CSS:
/* CSS content property */
.element::before {
content: "\007289"; /* 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%8A%89
MD5:
4766ad32b52aa9d5a5d23f0fb9106d25
SHA1:
0486f3d345f63d48760a00d5be1381aae8503a4e
Base64:
54qJ