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