C:
char c = '\u2445';
printf("%c\n", c); // Output: ⑅
JavaScript:
const char = '\u2445';
console.log(char); // Output: ⑅
Java:
char c = '\u2445';
System.out.println(c); // Output: ⑅
JSON:
{"text": "\u2445"} // Value: ⑅
Python:
char = '\u2445'
print(char) # Output: ⑅
Perl:
my $char = "\x{2445}";
print $char; # Output: ⑅
PHP:
$char = "\x{2445}";
echo $char; // Output: ⑅
Ruby:
char = "\u{2445}"
puts char # Output: ⑅
Rust:
let c = '\u{2445}';
println!("{}", c); // Output: ⑅
Go:
char := '\u2445'
fmt.Printf("%c\n", char) // Output: ⑅
CSS:
/* CSS content property */
.element::before {
content: "\002445"; /* 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%85
MD5:
b722847228beef7bc8aa3f4856a21b7b
SHA1:
859fd40c0a37db50dd8a24b7c32c9d74cf7fb7b0
Base64:
4pGF