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