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