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