C:
char c = '\u7287';
printf("%c\n", c); // Output: 犇
JavaScript:
const char = '\u7287';
console.log(char); // Output: 犇
Java:
char c = '\u7287';
System.out.println(c); // Output: 犇
JSON:
{"text": "\u7287"} // Value: 犇
Python:
char = '\u7287'
print(char) # Output: 犇
Perl:
my $char = "\x{7287}";
print $char; # Output: 犇
PHP:
$char = "\x{7287}";
echo $char; // Output: 犇
Ruby:
char = "\u{7287}"
puts char # Output: 犇
Rust:
let c = '\u{7287}';
println!("{}", c); // Output: 犇
Go:
char := '\u7287'
fmt.Printf("%c\n", char) // Output: 犇
CSS:
/* CSS content property */
.element::before {
content: "\007287"; /* 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%87
MD5:
e4954f6f7dd4144137888d5f361bd4f3
SHA1:
32c1304894d7be8b259d844b6f6d59eb64376978
Base64:
54qH