C:
char c = '\u2773';
printf("%c\n", c); // Output: ❳
JavaScript:
const char = '\u2773';
console.log(char); // Output: ❳
Java:
char c = '\u2773';
System.out.println(c); // Output: ❳
JSON:
{"text": "\u2773"} // Value: ❳
Python:
char = '\u2773'
print(char) # Output: ❳
Perl:
my $char = "\x{2773}";
print $char; # Output: ❳
PHP:
$char = "\x{2773}";
echo $char; // Output: ❳
Ruby:
char = "\u{2773}"
puts char # Output: ❳
Rust:
let c = '\u{2773}';
println!("{}", c); // Output: ❳
Go:
char := '\u2773'
fmt.Printf("%c\n", char) // Output: ❳
CSS:
/* CSS content property */
.element::before {
content: "\002773"; /* 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%9D%B3
MD5:
a7b99da1b0775017725b04d93297eefa
SHA1:
8b44395a941296aba56c3ea2a96391696ce28d8c
Base64:
4p2z