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