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