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