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