C:
char c = '\u2355';
printf("%c\n", c); // Output: ⍕
JavaScript:
const char = '\u2355';
console.log(char); // Output: ⍕
Java:
char c = '\u2355';
System.out.println(c); // Output: ⍕
JSON:
{"text": "\u2355"} // Value: ⍕
Python:
char = '\u2355'
print(char) # Output: ⍕
Perl:
my $char = "\x{2355}";
print $char; # Output: ⍕
PHP:
$char = "\x{2355}";
echo $char; // Output: ⍕
Ruby:
char = "\u{2355}"
puts char # Output: ⍕
Rust:
let c = '\u{2355}';
println!("{}", c); // Output: ⍕
Go:
char := '\u2355'
fmt.Printf("%c\n", char) // Output: ⍕
CSS:
/* CSS content property */
.element::before {
content: "\002355"; /* 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%95
MD5:
9826568c6b0cb4537111a0c681b62859
SHA1:
a0d357f7a661626821658cccab48271759305ca5
Base64:
4o2V