C:
char c = '\u2343';
printf("%c\n", c); // Output: ⍃
JavaScript:
const char = '\u2343';
console.log(char); // Output: ⍃
Java:
char c = '\u2343';
System.out.println(c); // Output: ⍃
JSON:
{"text": "\u2343"} // Value: ⍃
Python:
char = '\u2343'
print(char) # Output: ⍃
Perl:
my $char = "\x{2343}";
print $char; # Output: ⍃
PHP:
$char = "\x{2343}";
echo $char; // Output: ⍃
Ruby:
char = "\u{2343}"
puts char # Output: ⍃
Rust:
let c = '\u{2343}';
println!("{}", c); // Output: ⍃
Go:
char := '\u2343'
fmt.Printf("%c\n", char) // Output: ⍃
CSS:
/* CSS content property */
.element::before {
content: "\002343"; /* 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%83
MD5:
641f2dbf23f7b62ac2409ed57d55c7f9
SHA1:
501aa5b9656eba56887ad348f45186a67f9ecedf
Base64:
4o2D