C:
char c = '\u7244';
printf("%c\n", c); // Output: 牄
JavaScript:
const char = '\u7244';
console.log(char); // Output: 牄
Java:
char c = '\u7244';
System.out.println(c); // Output: 牄
JSON:
{"text": "\u7244"} // Value: 牄
Python:
char = '\u7244'
print(char) # Output: 牄
Perl:
my $char = "\x{7244}";
print $char; # Output: 牄
PHP:
$char = "\x{7244}";
echo $char; // Output: 牄
Ruby:
char = "\u{7244}"
puts char # Output: 牄
Rust:
let c = '\u{7244}';
println!("{}", c); // Output: 牄
Go:
char := '\u7244'
fmt.Printf("%c\n", char) // Output: 牄
CSS:
/* CSS content property */
.element::before {
content: "\007244"; /* 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%84
MD5:
02d2c57b7e7f135479231a9774b51860
SHA1:
73c32490f5ad9b07c20d40b4249e147253d4f114
Base64:
54mE