C:
char c = '\u2705';
printf("%c\n", c); // Output: ✅
JavaScript:
const char = '\u2705';
console.log(char); // Output: ✅
Java:
char c = '\u2705';
System.out.println(c); // Output: ✅
JSON:
{"text": "\u2705"} // Value: ✅
Python:
char = '\u2705'
print(char) # Output: ✅
Perl:
my $char = "\x{2705}";
print $char; # Output: ✅
PHP:
$char = "\x{2705}";
echo $char; // Output: ✅
Ruby:
char = "\u{2705}"
puts char # Output: ✅
Rust:
let c = '\u{2705}';
println!("{}", c); // Output: ✅
Go:
char := '\u2705'
fmt.Printf("%c\n", char) // Output: ✅
CSS:
/* CSS content property */
.element::before {
content: "\002705"; /* 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%85
MD5:
fa3bf6e4f7d17c9beb330c0d59fcffad
SHA1:
1cee944946bff8d51e351ab4c7bd42a5de041a84
Base64:
4pyF