C:
char c = '\u2441';
printf("%c\n", c); // Output: ⑁
JavaScript:
const char = '\u2441';
console.log(char); // Output: ⑁
Java:
char c = '\u2441';
System.out.println(c); // Output: ⑁
JSON:
{"text": "\u2441"} // Value: ⑁
Python:
char = '\u2441'
print(char) # Output: ⑁
Perl:
my $char = "\x{2441}";
print $char; # Output: ⑁
PHP:
$char = "\x{2441}";
echo $char; // Output: ⑁
Ruby:
char = "\u{2441}"
puts char # Output: ⑁
Rust:
let c = '\u{2441}';
println!("{}", c); // Output: ⑁
Go:
char := '\u2441'
fmt.Printf("%c\n", char) // Output: ⑁
CSS:
/* CSS content property */
.element::before {
content: "\002441"; /* 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%81
MD5:
a546de22295199f37d53771db5289451
SHA1:
3ccc0e0d4992c94e4d056c5b298ed8e45cf99437
Base64:
4pGB