C:
char c = '\u2347';
printf("%c\n", c); // Output: ⍇
JavaScript:
const char = '\u2347';
console.log(char); // Output: ⍇
Java:
char c = '\u2347';
System.out.println(c); // Output: ⍇
JSON:
{"text": "\u2347"} // Value: ⍇
Python:
char = '\u2347'
print(char) # Output: ⍇
Perl:
my $char = "\x{2347}";
print $char; # Output: ⍇
PHP:
$char = "\x{2347}";
echo $char; // Output: ⍇
Ruby:
char = "\u{2347}"
puts char # Output: ⍇
Rust:
let c = '\u{2347}';
println!("{}", c); // Output: ⍇
Go:
char := '\u2347'
fmt.Printf("%c\n", char) // Output: ⍇
CSS:
/* CSS content property */
.element::before {
content: "\002347"; /* 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%87
MD5:
26830abc419fecbf1b65322121025ab3
SHA1:
d73caa6c4ad3a62ea3dab5f5e4359330495329a1
Base64:
4o2H