C:
char c = '\u2357';
printf("%c\n", c); // Output: ⍗
JavaScript:
const char = '\u2357';
console.log(char); // Output: ⍗
Java:
char c = '\u2357';
System.out.println(c); // Output: ⍗
JSON:
{"text": "\u2357"} // Value: ⍗
Python:
char = '\u2357'
print(char) # Output: ⍗
Perl:
my $char = "\x{2357}";
print $char; # Output: ⍗
PHP:
$char = "\x{2357}";
echo $char; // Output: ⍗
Ruby:
char = "\u{2357}"
puts char # Output: ⍗
Rust:
let c = '\u{2357}';
println!("{}", c); // Output: ⍗
Go:
char := '\u2357'
fmt.Printf("%c\n", char) // Output: ⍗
CSS:
/* CSS content property */
.element::before {
content: "\002357"; /* 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%97
MD5:
5ff9eb6274da5c97394a31536d0219c0
SHA1:
3f231dbabf3129ae5a9d2114abe31454247c4bcc
Base64:
4o2X