C:
char c = '\u2B01';
printf("%c\n", c); // Output: ⬁
JavaScript:
const char = '\u2B01';
console.log(char); // Output: ⬁
Java:
char c = '\u2B01';
System.out.println(c); // Output: ⬁
JSON:
{"text": "\u2B01"} // Value: ⬁
Python:
char = '\u2B01'
print(char) # Output: ⬁
Perl:
my $char = "\x{2B01}";
print $char; # Output: ⬁
PHP:
$char = "\x{2B01}";
echo $char; // Output: ⬁
Ruby:
char = "\u{2B01}"
puts char # Output: ⬁
Rust:
let c = '\u{2B01}';
println!("{}", c); // Output: ⬁
Go:
char := '\u2B01'
fmt.Printf("%c\n", char) // Output: ⬁
CSS:
/* CSS content property */
.element::before {
content: "\002B01"; /* 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%AC%81
MD5:
96645ac05b598302cdadf8d09e55e5b8
SHA1:
72b4f424ceef36eca1329d57fbe9c765f252617a
Base64:
4qyB