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