C:
char c = '\u271D';
printf("%c\n", c); // Output: ✝
JavaScript:
const char = '\u271D';
console.log(char); // Output: ✝
Java:
char c = '\u271D';
System.out.println(c); // Output: ✝
JSON:
{"text": "\u271D"} // Value: ✝
Python:
char = '\u271D'
print(char) # Output: ✝
Perl:
my $char = "\x{271D}";
print $char; # Output: ✝
PHP:
$char = "\x{271D}";
echo $char; // Output: ✝
Ruby:
char = "\u{271D}"
puts char # Output: ✝
Rust:
let c = '\u{271D}';
println!("{}", c); // Output: ✝
Go:
char := '\u271D'
fmt.Printf("%c\n", char) // Output: ✝
CSS:
/* CSS content property */
.element::before {
content: "\00271D"; /* 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=%E2%9C%9D
MD5:
0754e6d6cbed7fe5e625dd4861a70567
SHA1:
62a93592e4e43fc72da45c61f4455fff2dc8ae49
Base64:
4pyd