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