C:
char c = '\u2DC1';
printf("%c\n", c); // Output: ⷁ
JavaScript:
const char = '\u2DC1';
console.log(char); // Output: ⷁ
Java:
char c = '\u2DC1';
System.out.println(c); // Output: ⷁ
JSON:
{"text": "\u2DC1"} // Value: ⷁ
Python:
char = '\u2DC1'
print(char) # Output: ⷁ
Perl:
my $char = "\x{2DC1}";
print $char; # Output: ⷁ
PHP:
$char = "\x{2DC1}";
echo $char; // Output: ⷁ
Ruby:
char = "\u{2DC1}"
puts char # Output: ⷁ
Rust:
let c = '\u{2DC1}';
println!("{}", c); // Output: ⷁ
Go:
char := '\u2DC1'
fmt.Printf("%c\n", char) // Output: ⷁ
CSS:
/* CSS content property */
.element::before {
content: "\002DC1"; /* 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%B7%81
MD5:
0440b629625a91d94e6efa8a18cea5a1
SHA1:
672a185d4d5eed64b7bd4db99fb84363ef7dea50
Base64:
4reB