C:
char c = '\u7259';
printf("%c\n", c); // Output: 牙
JavaScript:
const char = '\u7259';
console.log(char); // Output: 牙
Java:
char c = '\u7259';
System.out.println(c); // Output: 牙
JSON:
{"text": "\u7259"} // Value: 牙
Python:
char = '\u7259'
print(char) # Output: 牙
Perl:
my $char = "\x{7259}";
print $char; # Output: 牙
PHP:
$char = "\x{7259}";
echo $char; // Output: 牙
Ruby:
char = "\u{7259}"
puts char # Output: 牙
Rust:
let c = '\u{7259}';
println!("{}", c); // Output: 牙
Go:
char := '\u7259'
fmt.Printf("%c\n", char) // Output: 牙
CSS:
/* CSS content property */
.element::before {
content: "\007259"; /* 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%99
MD5:
d582052b07a48a149bcdb1fecc76483e
SHA1:
87d892e099f4e4b50cfdb122c1307f7ecee4183f
Base64:
54mZ