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