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