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