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