C:
char c = '\u725F';
printf("%c\n", c); // Output: 牟
JavaScript:
const char = '\u725F';
console.log(char); // Output: 牟
Java:
char c = '\u725F';
System.out.println(c); // Output: 牟
JSON:
{"text": "\u725F"} // Value: 牟
Python:
char = '\u725F'
print(char) # Output: 牟
Perl:
my $char = "\x{725F}";
print $char; # Output: 牟
PHP:
$char = "\x{725F}";
echo $char; // Output: 牟
Ruby:
char = "\u{725F}"
puts char # Output: 牟
Rust:
let c = '\u{725F}';
println!("{}", c); // Output: 牟
Go:
char := '\u725F'
fmt.Printf("%c\n", char) // Output: 牟
CSS:
/* CSS content property */
.element::before {
content: "\00725F"; /* 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%9F
MD5:
9012587ab3b5b24dc3af37a0852abce5
SHA1:
a3c6802d6b1407147f83d634c1775c9debbb03ff
Base64:
54mf