C:
char c = '\u2BA6';
printf("%c\n", c); // Output: ⮦
JavaScript:
const char = '\u2BA6';
console.log(char); // Output: ⮦
Java:
char c = '\u2BA6';
System.out.println(c); // Output: ⮦
JSON:
{"text": "\u2BA6"} // Value: ⮦
Python:
char = '\u2BA6'
print(char) # Output: ⮦
Perl:
my $char = "\x{2BA6}";
print $char; # Output: ⮦
PHP:
$char = "\x{2BA6}";
echo $char; // Output: ⮦
Ruby:
char = "\u{2BA6}"
puts char # Output: ⮦
Rust:
let c = '\u{2BA6}';
println!("{}", c); // Output: ⮦
Go:
char := '\u2BA6'
fmt.Printf("%c\n", char) // Output: ⮦
CSS:
/* CSS content property */
.element::before {
content: "\002BA6"; /* 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%AE%A6
MD5:
97cdfe0247ee35a5e3d2b148e8479805
SHA1:
f13c612528ae05dc9f03927ffebc5160991a8248
Base64:
4q6m