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