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