C:
char c = '\u7257';
printf("%c\n", c); // Output: 牗
JavaScript:
const char = '\u7257';
console.log(char); // Output: 牗
Java:
char c = '\u7257';
System.out.println(c); // Output: 牗
JSON:
{"text": "\u7257"} // Value: 牗
Python:
char = '\u7257'
print(char) # Output: 牗
Perl:
my $char = "\x{7257}";
print $char; # Output: 牗
PHP:
$char = "\x{7257}";
echo $char; // Output: 牗
Ruby:
char = "\u{7257}"
puts char # Output: 牗
Rust:
let c = '\u{7257}';
println!("{}", c); // Output: 牗
Go:
char := '\u7257'
fmt.Printf("%c\n", char) // Output: 牗
CSS:
/* CSS content property */
.element::before {
content: "\007257"; /* 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%97
MD5:
518718670048cd3f6d8b51fce9b0a3ec
SHA1:
8d16b2fc086088398959537941919840a208d1e1
Base64:
54mX