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