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