C:
char c = '\u7266';
printf("%c\n", c); // Output: 牦
JavaScript:
const char = '\u7266';
console.log(char); // Output: 牦
Java:
char c = '\u7266';
System.out.println(c); // Output: 牦
JSON:
{"text": "\u7266"} // Value: 牦
Python:
char = '\u7266'
print(char) # Output: 牦
Perl:
my $char = "\x{7266}";
print $char; # Output: 牦
PHP:
$char = "\x{7266}";
echo $char; // Output: 牦
Ruby:
char = "\u{7266}"
puts char # Output: 牦
Rust:
let c = '\u{7266}';
println!("{}", c); // Output: 牦
Go:
char := '\u7266'
fmt.Printf("%c\n", char) // Output: 牦
CSS:
/* CSS content property */
.element::before {
content: "\007266"; /* 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%A6
MD5:
d7f9891b5e01f079cec1f495f7e03eab
SHA1:
6c50ef994d08185456238308e89e7cc59c15248a
Base64:
54mm