C:
char c = '\u7252';
printf("%c\n", c); // Output: 牒
JavaScript:
const char = '\u7252';
console.log(char); // Output: 牒
Java:
char c = '\u7252';
System.out.println(c); // Output: 牒
JSON:
{"text": "\u7252"} // Value: 牒
Python:
char = '\u7252'
print(char) # Output: 牒
Perl:
my $char = "\x{7252}";
print $char; # Output: 牒
PHP:
$char = "\x{7252}";
echo $char; // Output: 牒
Ruby:
char = "\u{7252}"
puts char # Output: 牒
Rust:
let c = '\u{7252}';
println!("{}", c); // Output: 牒
Go:
char := '\u7252'
fmt.Printf("%c\n", char) // Output: 牒
CSS:
/* CSS content property */
.element::before {
content: "\007252"; /* 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%92
MD5:
7d30e14079748c669fe9a04d19b9f686
SHA1:
c834eabbf1560e68e654d840cfbafbd38cfdc408
Base64:
54mS