C:
char c = '\u2184';
printf("%c\n", c); // Output: ↄ
JavaScript:
const char = '\u2184';
console.log(char); // Output: ↄ
Java:
char c = '\u2184';
System.out.println(c); // Output: ↄ
JSON:
{"text": "\u2184"} // Value: ↄ
Python:
char = '\u2184'
print(char) # Output: ↄ
Perl:
my $char = "\x{2184}";
print $char; # Output: ↄ
PHP:
$char = "\x{2184}";
echo $char; // Output: ↄ
Ruby:
char = "\u{2184}"
puts char # Output: ↄ
Rust:
let c = '\u{2184}';
println!("{}", c); // Output: ↄ
Go:
char := '\u2184'
fmt.Printf("%c\n", char) // Output: ↄ
CSS:
/* CSS content property */
.element::before {
content: "\002184"; /* 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%84
MD5:
dbf8bb621ee1d9624c65cdb75295a888
SHA1:
7a4fe33e91597dc71aefc247467ddcab3acc8aac
Base64:
4oaE