C:
char c = '\u2368';
printf("%c\n", c); // Output: ⍨
JavaScript:
const char = '\u2368';
console.log(char); // Output: ⍨
Java:
char c = '\u2368';
System.out.println(c); // Output: ⍨
JSON:
{"text": "\u2368"} // Value: ⍨
Python:
char = '\u2368'
print(char) # Output: ⍨
Perl:
my $char = "\x{2368}";
print $char; # Output: ⍨
PHP:
$char = "\x{2368}";
echo $char; // Output: ⍨
Ruby:
char = "\u{2368}"
puts char # Output: ⍨
Rust:
let c = '\u{2368}';
println!("{}", c); // Output: ⍨
Go:
char := '\u2368'
fmt.Printf("%c\n", char) // Output: ⍨
CSS:
/* CSS content property */
.element::before {
content: "\002368"; /* 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%A8
MD5:
0848ff149e6707f8af7887aa58d6570a
SHA1:
d86c0caf1dfab4b674b944a0abc64a9e3fb2ab3b
Base64:
4o2o