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