C:
char c = '\u7272';
printf("%c\n", c); // Output: 牲
JavaScript:
const char = '\u7272';
console.log(char); // Output: 牲
Java:
char c = '\u7272';
System.out.println(c); // Output: 牲
JSON:
{"text": "\u7272"} // Value: 牲
Python:
char = '\u7272'
print(char) # Output: 牲
Perl:
my $char = "\x{7272}";
print $char; # Output: 牲
PHP:
$char = "\x{7272}";
echo $char; // Output: 牲
Ruby:
char = "\u{7272}"
puts char # Output: 牲
Rust:
let c = '\u{7272}';
println!("{}", c); // Output: 牲
Go:
char := '\u7272'
fmt.Printf("%c\n", char) // Output: 牲
CSS:
/* CSS content property */
.element::before {
content: "\007272"; /* 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%B2
MD5:
44e5c05f56221988d8e7f5763271946b
SHA1:
616fa4887a760f5244cb65db76c7220672f14b9a
Base64:
54my