C:
char c = '\u7286';
printf("%c\n", c); // Output: 犆
JavaScript:
const char = '\u7286';
console.log(char); // Output: 犆
Java:
char c = '\u7286';
System.out.println(c); // Output: 犆
JSON:
{"text": "\u7286"} // Value: 犆
Python:
char = '\u7286'
print(char) # Output: 犆
Perl:
my $char = "\x{7286}";
print $char; # Output: 犆
PHP:
$char = "\x{7286}";
echo $char; // Output: 犆
Ruby:
char = "\u{7286}"
puts char # Output: 犆
Rust:
let c = '\u{7286}';
println!("{}", c); // Output: 犆
Go:
char := '\u7286'
fmt.Printf("%c\n", char) // Output: 犆
CSS:
/* CSS content property */
.element::before {
content: "\007286"; /* 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%86
MD5:
6c1aaa005b108eacfe2777a7e266a8b5
SHA1:
608aca4cc5554c14c547a6b3585e05d611808f97
Base64:
54qG