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