C:
char c = '\u2370';
printf("%c\n", c); // Output: ⍰
JavaScript:
const char = '\u2370';
console.log(char); // Output: ⍰
Java:
char c = '\u2370';
System.out.println(c); // Output: ⍰
JSON:
{"text": "\u2370"} // Value: ⍰
Python:
char = '\u2370'
print(char) # Output: ⍰
Perl:
my $char = "\x{2370}";
print $char; # Output: ⍰
PHP:
$char = "\x{2370}";
echo $char; // Output: ⍰
Ruby:
char = "\u{2370}"
puts char # Output: ⍰
Rust:
let c = '\u{2370}';
println!("{}", c); // Output: ⍰
Go:
char := '\u2370'
fmt.Printf("%c\n", char) // Output: ⍰
CSS:
/* CSS content property */
.element::before {
content: "\002370"; /* 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%B0
MD5:
0f6f4bce917686fcc5ef53727ce15d57
SHA1:
983a913e64945e8a3d7fff2bb6a88937905754fc
Base64:
4o2w