C:
char c = '\u7282';
printf("%c\n", c); // Output: 犂
JavaScript:
const char = '\u7282';
console.log(char); // Output: 犂
Java:
char c = '\u7282';
System.out.println(c); // Output: 犂
JSON:
{"text": "\u7282"} // Value: 犂
Python:
char = '\u7282'
print(char) # Output: 犂
Perl:
my $char = "\x{7282}";
print $char; # Output: 犂
PHP:
$char = "\x{7282}";
echo $char; // Output: 犂
Ruby:
char = "\u{7282}"
puts char # Output: 犂
Rust:
let c = '\u{7282}';
println!("{}", c); // Output: 犂
Go:
char := '\u7282'
fmt.Printf("%c\n", char) // Output: 犂
CSS:
/* CSS content property */
.element::before {
content: "\007282"; /* 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%82
MD5:
9e1207b4a6f96c99dabbc02f0a09ce84
SHA1:
e3c1c1ba4d313bfe46f58b590c882a41e5296fa8
Base64:
54qC