C:
char c = '\u2444';
printf("%c\n", c); // Output: ⑄
JavaScript:
const char = '\u2444';
console.log(char); // Output: ⑄
Java:
char c = '\u2444';
System.out.println(c); // Output: ⑄
JSON:
{"text": "\u2444"} // Value: ⑄
Python:
char = '\u2444'
print(char) # Output: ⑄
Perl:
my $char = "\x{2444}";
print $char; # Output: ⑄
PHP:
$char = "\x{2444}";
echo $char; // Output: ⑄
Ruby:
char = "\u{2444}"
puts char # Output: ⑄
Rust:
let c = '\u{2444}';
println!("{}", c); // Output: ⑄
Go:
char := '\u2444'
fmt.Printf("%c\n", char) // Output: ⑄
CSS:
/* CSS content property */
.element::before {
content: "\002444"; /* 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%84
MD5:
efe78ae5624ef4020854f2486e3e2951
SHA1:
ab3805c3bd884df7a52d4de5d9ce1ccd1153f28b
Base64:
4pGE