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