C:
char c = '\u739B';
printf("%c\n", c); // Output: 玛
JavaScript:
const char = '\u739B';
console.log(char); // Output: 玛
Java:
char c = '\u739B';
System.out.println(c); // Output: 玛
JSON:
{"text": "\u739B"} // Value: 玛
Python:
char = '\u739B'
print(char) # Output: 玛
Perl:
my $char = "\x{739B}";
print $char; # Output: 玛
PHP:
$char = "\x{739B}";
echo $char; // Output: 玛
Ruby:
char = "\u{739B}"
puts char # Output: 玛
Rust:
let c = '\u{739B}';
println!("{}", c); // Output: 玛
Go:
char := '\u739B'
fmt.Printf("%c\n", char) // Output: 玛
CSS:
/* CSS content property */
.element::before {
content: "\00739B"; /* 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%8E%9B
MD5:
980a0ca2d0100570bdaf19495888db51
SHA1:
76c45c46b1b87d1b9d7c889de4470a11f28fb13b
Base64:
546b