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