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