C:
char c = '\u2180';
printf("%c\n", c); // Output: ↀ
JavaScript:
const char = '\u2180';
console.log(char); // Output: ↀ
Java:
char c = '\u2180';
System.out.println(c); // Output: ↀ
JSON:
{"text": "\u2180"} // Value: ↀ
Python:
char = '\u2180'
print(char) # Output: ↀ
Perl:
my $char = "\x{2180}";
print $char; # Output: ↀ
PHP:
$char = "\x{2180}";
echo $char; // Output: ↀ
Ruby:
char = "\u{2180}"
puts char # Output: ↀ
Rust:
let c = '\u{2180}';
println!("{}", c); // Output: ↀ
Go:
char := '\u2180'
fmt.Printf("%c\n", char) // Output: ↀ
CSS:
/* CSS content property */
.element::before {
content: "\002180"; /* 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%80
MD5:
e721a79f6ff6896677ed2df356ae3203
SHA1:
254008d222966d047dcd06755cb9b86adce8c67b
Base64:
4oaA