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