C:
char c = '\u2367';
printf("%c\n", c); // Output: ⍧
JavaScript:
const char = '\u2367';
console.log(char); // Output: ⍧
Java:
char c = '\u2367';
System.out.println(c); // Output: ⍧
JSON:
{"text": "\u2367"} // Value: ⍧
Python:
char = '\u2367'
print(char) # Output: ⍧
Perl:
my $char = "\x{2367}";
print $char; # Output: ⍧
PHP:
$char = "\x{2367}";
echo $char; // Output: ⍧
Ruby:
char = "\u{2367}"
puts char # Output: ⍧
Rust:
let c = '\u{2367}';
println!("{}", c); // Output: ⍧
Go:
char := '\u2367'
fmt.Printf("%c\n", char) // Output: ⍧
CSS:
/* CSS content property */
.element::before {
content: "\002367"; /* 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%A7
MD5:
ac3ab077082fc6c47461c8aa5eb301af
SHA1:
7d8c3f7d885e1af979be5d2e7f50288575751fc8
Base64:
4o2n