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