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