C:
char c = '\u27CB';
printf("%c\n", c); // Output: ⟋
JavaScript:
const char = '\u27CB';
console.log(char); // Output: ⟋
Java:
char c = '\u27CB';
System.out.println(c); // Output: ⟋
JSON:
{"text": "\u27CB"} // Value: ⟋
Python:
char = '\u27CB'
print(char) # Output: ⟋
Perl:
my $char = "\x{27CB}";
print $char; # Output: ⟋
PHP:
$char = "\x{27CB}";
echo $char; // Output: ⟋
Ruby:
char = "\u{27CB}"
puts char # Output: ⟋
Rust:
let c = '\u{27CB}';
println!("{}", c); // Output: ⟋
Go:
char := '\u27CB'
fmt.Printf("%c\n", char) // Output: ⟋
CSS:
/* CSS content property */
.element::before {
content: "\0027CB"; /* 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%9F%8B
MD5:
5b3adeaf3552191fefcb21d5ce69327e
SHA1:
3929e3bd8fd165ba03a125fc942f3655ebe01362
Base64:
4p+L