C:
char c = '\u2782';
printf("%c\n", c); // Output: ➂
JavaScript:
const char = '\u2782';
console.log(char); // Output: ➂
Java:
char c = '\u2782';
System.out.println(c); // Output: ➂
JSON:
{"text": "\u2782"} // Value: ➂
Python:
char = '\u2782'
print(char) # Output: ➂
Perl:
my $char = "\x{2782}";
print $char; # Output: ➂
PHP:
$char = "\x{2782}";
echo $char; // Output: ➂
Ruby:
char = "\u{2782}"
puts char # Output: ➂
Rust:
let c = '\u{2782}';
println!("{}", c); // Output: ➂
Go:
char := '\u2782'
fmt.Printf("%c\n", char) // Output: ➂
CSS:
/* CSS content property */
.element::before {
content: "\002782"; /* 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%9E%82
MD5:
a000b89826b74a6ab258ad2d3649c83f
SHA1:
91250651b93ffab481c974b45f9f31b1acdda7ad
Base64:
4p6C