C:
char c = '\u7249';
printf("%c\n", c); // Output: 牉
JavaScript:
const char = '\u7249';
console.log(char); // Output: 牉
Java:
char c = '\u7249';
System.out.println(c); // Output: 牉
JSON:
{"text": "\u7249"} // Value: 牉
Python:
char = '\u7249'
print(char) # Output: 牉
Perl:
my $char = "\x{7249}";
print $char; # Output: 牉
PHP:
$char = "\x{7249}";
echo $char; // Output: 牉
Ruby:
char = "\u{7249}"
puts char # Output: 牉
Rust:
let c = '\u{7249}';
println!("{}", c); // Output: 牉
Go:
char := '\u7249'
fmt.Printf("%c\n", char) // Output: 牉
CSS:
/* CSS content property */
.element::before {
content: "\007249"; /* 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%89
MD5:
3c2dfbf39971e9279cac24802eceb7e9
SHA1:
7656428126c16e57e3d2f909d7a8d893a38e5097
Base64:
54mJ