C:
char c = '\u27EC';
printf("%c\n", c); // Output: ⟬
JavaScript:
const char = '\u27EC';
console.log(char); // Output: ⟬
Java:
char c = '\u27EC';
System.out.println(c); // Output: ⟬
JSON:
{"text": "\u27EC"} // Value: ⟬
Python:
char = '\u27EC'
print(char) # Output: ⟬
Perl:
my $char = "\x{27EC}";
print $char; # Output: ⟬
PHP:
$char = "\x{27EC}";
echo $char; // Output: ⟬
Ruby:
char = "\u{27EC}"
puts char # Output: ⟬
Rust:
let c = '\u{27EC}';
println!("{}", c); // Output: ⟬
Go:
char := '\u27EC'
fmt.Printf("%c\n", char) // Output: ⟬
CSS:
/* CSS content property */
.element::before {
content: "\0027EC"; /* 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%AC
MD5:
a62f174e7b89017098a56079e6c9326f
SHA1:
c4a3b36e09677f5625905b5255bb35b4cf43be9d
Base64:
4p+s