C:
char c = '\u2373';
printf("%c\n", c); // Output: ⍳
JavaScript:
const char = '\u2373';
console.log(char); // Output: ⍳
Java:
char c = '\u2373';
System.out.println(c); // Output: ⍳
JSON:
{"text": "\u2373"} // Value: ⍳
Python:
char = '\u2373'
print(char) # Output: ⍳
Perl:
my $char = "\x{2373}";
print $char; # Output: ⍳
PHP:
$char = "\x{2373}";
echo $char; // Output: ⍳
Ruby:
char = "\u{2373}"
puts char # Output: ⍳
Rust:
let c = '\u{2373}';
println!("{}", c); // Output: ⍳
Go:
char := '\u2373'
fmt.Printf("%c\n", char) // Output: ⍳
CSS:
/* CSS content property */
.element::before {
content: "\002373"; /* 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%B3
MD5:
756cc1fe1e83fb3bd22f8f379197eafa
SHA1:
8087ff5d29e6a449dfe0565faf8d9d0575369f3f
Base64:
4o2z