C:
char c = '\u2353';
printf("%c\n", c); // Output: ⍓
JavaScript:
const char = '\u2353';
console.log(char); // Output: ⍓
Java:
char c = '\u2353';
System.out.println(c); // Output: ⍓
JSON:
{"text": "\u2353"} // Value: ⍓
Python:
char = '\u2353'
print(char) # Output: ⍓
Perl:
my $char = "\x{2353}";
print $char; # Output: ⍓
PHP:
$char = "\x{2353}";
echo $char; // Output: ⍓
Ruby:
char = "\u{2353}"
puts char # Output: ⍓
Rust:
let c = '\u{2353}';
println!("{}", c); // Output: ⍓
Go:
char := '\u2353'
fmt.Printf("%c\n", char) // Output: ⍓
CSS:
/* CSS content property */
.element::before {
content: "\002353"; /* 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%93
MD5:
2610ff354f6a8cfd1165a40326b2e31d
SHA1:
c89d451c95058b8ffab60f1568ae0ecb68008096
Base64:
4o2T