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