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