C:
char c = '\u7283';
printf("%c\n", c); // Output: 犃
JavaScript:
const char = '\u7283';
console.log(char); // Output: 犃
Java:
char c = '\u7283';
System.out.println(c); // Output: 犃
JSON:
{"text": "\u7283"} // Value: 犃
Python:
char = '\u7283'
print(char) # Output: 犃
Perl:
my $char = "\x{7283}";
print $char; # Output: 犃
PHP:
$char = "\x{7283}";
echo $char; // Output: 犃
Ruby:
char = "\u{7283}"
puts char # Output: 犃
Rust:
let c = '\u{7283}';
println!("{}", c); // Output: 犃
Go:
char := '\u7283'
fmt.Printf("%c\n", char) // Output: 犃
CSS:
/* CSS content property */
.element::before {
content: "\007283"; /* 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%83
MD5:
500f11c62e3b92928203fef487657890
SHA1:
fc6a7df15c12f9749fbebdb0d8a2ba51fd302f71
Base64:
54qD