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