C:
char c = '\u2344';
printf("%c\n", c); // Output: ⍄
JavaScript:
const char = '\u2344';
console.log(char); // Output: ⍄
Java:
char c = '\u2344';
System.out.println(c); // Output: ⍄
JSON:
{"text": "\u2344"} // Value: ⍄
Python:
char = '\u2344'
print(char) # Output: ⍄
Perl:
my $char = "\x{2344}";
print $char; # Output: ⍄
PHP:
$char = "\x{2344}";
echo $char; // Output: ⍄
Ruby:
char = "\u{2344}"
puts char # Output: ⍄
Rust:
let c = '\u{2344}';
println!("{}", c); // Output: ⍄
Go:
char := '\u2344'
fmt.Printf("%c\n", char) // Output: ⍄
CSS:
/* CSS content property */
.element::before {
content: "\002344"; /* 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%8D%84
MD5:
001b460b9c98395c58c062ed9e153e82
SHA1:
36bf06704b05829b23ff2224cbe64d1ceba3f81b
Base64:
4o2E