C:
char c = '\u7263';
printf("%c\n", c); // Output: 牣
JavaScript:
const char = '\u7263';
console.log(char); // Output: 牣
Java:
char c = '\u7263';
System.out.println(c); // Output: 牣
JSON:
{"text": "\u7263"} // Value: 牣
Python:
char = '\u7263'
print(char) # Output: 牣
Perl:
my $char = "\x{7263}";
print $char; # Output: 牣
PHP:
$char = "\x{7263}";
echo $char; // Output: 牣
Ruby:
char = "\u{7263}"
puts char # Output: 牣
Rust:
let c = '\u{7263}';
println!("{}", c); // Output: 牣
Go:
char := '\u7263'
fmt.Printf("%c\n", char) // Output: 牣
CSS:
/* CSS content property */
.element::before {
content: "\007263"; /* 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%89%A3
MD5:
31db60098ffbff7aa7d082f421850b60
SHA1:
9a771d4405d259032985c62544943e411cc2447b
Base64:
54mj