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