C:
char c = '\u72AD';
printf("%c\n", c); // Output: 犭
JavaScript:
const char = '\u72AD';
console.log(char); // Output: 犭
Java:
char c = '\u72AD';
System.out.println(c); // Output: 犭
JSON:
{"text": "\u72AD"} // Value: 犭
Python:
char = '\u72AD'
print(char) # Output: 犭
Perl:
my $char = "\x{72AD}";
print $char; # Output: 犭
PHP:
$char = "\x{72AD}";
echo $char; // Output: 犭
Ruby:
char = "\u{72AD}"
puts char # Output: 犭
Rust:
let c = '\u{72AD}';
println!("{}", c); // Output: 犭
Go:
char := '\u72AD'
fmt.Printf("%c\n", char) // Output: 犭
CSS:
/* CSS content property */
.element::before {
content: "\0072AD"; /* 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%AD
MD5:
d1f72d62ba53bfdd6cb62f521775a9e7
SHA1:
45e29117376d30963d7ef2dc2996aa75251c3368
Base64:
54qt