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