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