C:
char c = '\u23AB';
printf("%c\n", c); // Output: ⎫
JavaScript:
const char = '\u23AB';
console.log(char); // Output: ⎫
Java:
char c = '\u23AB';
System.out.println(c); // Output: ⎫
JSON:
{"text": "\u23AB"} // Value: ⎫
Python:
char = '\u23AB'
print(char) # Output: ⎫
Perl:
my $char = "\x{23AB}";
print $char; # Output: ⎫
PHP:
$char = "\x{23AB}";
echo $char; // Output: ⎫
Ruby:
char = "\u{23AB}"
puts char # Output: ⎫
Rust:
let c = '\u{23AB}';
println!("{}", c); // Output: ⎫
Go:
char := '\u23AB'
fmt.Printf("%c\n", char) // Output: ⎫
CSS:
/* CSS content property */
.element::before {
content: "\0023AB"; /* 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%8E%AB
MD5:
c35738f25b882d498f149ee0c8a612c6
SHA1:
842370ce94678251ebe9703bec3f53ad38285cab
Base64:
4o6r