C:
char c = '\u2342';
printf("%c\n", c); // Output: ⍂
JavaScript:
const char = '\u2342';
console.log(char); // Output: ⍂
Java:
char c = '\u2342';
System.out.println(c); // Output: ⍂
JSON:
{"text": "\u2342"} // Value: ⍂
Python:
char = '\u2342'
print(char) # Output: ⍂
Perl:
my $char = "\x{2342}";
print $char; # Output: ⍂
PHP:
$char = "\x{2342}";
echo $char; // Output: ⍂
Ruby:
char = "\u{2342}"
puts char # Output: ⍂
Rust:
let c = '\u{2342}';
println!("{}", c); // Output: ⍂
Go:
char := '\u2342'
fmt.Printf("%c\n", char) // Output: ⍂
CSS:
/* CSS content property */
.element::before {
content: "\002342"; /* 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%82
MD5:
fb2feee9ff8fab58124ceefb977fe646
SHA1:
06d5d183acf0f8d1205e0e9325cbb8c247db1af1
Base64:
4o2C