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