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