C:
char c = '\u2446';
printf("%c\n", c); // Output: ⑆
JavaScript:
const char = '\u2446';
console.log(char); // Output: ⑆
Java:
char c = '\u2446';
System.out.println(c); // Output: ⑆
JSON:
{"text": "\u2446"} // Value: ⑆
Python:
char = '\u2446'
print(char) # Output: ⑆
Perl:
my $char = "\x{2446}";
print $char; # Output: ⑆
PHP:
$char = "\x{2446}";
echo $char; // Output: ⑆
Ruby:
char = "\u{2446}"
puts char # Output: ⑆
Rust:
let c = '\u{2446}';
println!("{}", c); // Output: ⑆
Go:
char := '\u2446'
fmt.Printf("%c\n", char) // Output: ⑆
CSS:
/* CSS content property */
.element::before {
content: "\002446"; /* 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%91%86
MD5:
1820e1fb779adf37493c9082cf387fce
SHA1:
b87c0c69ec6ce343bc6cebf24b7fa64c92a2b866
Base64:
4pGG