C:
char c = '\u2356';
printf("%c\n", c); // Output: ⍖
JavaScript:
const char = '\u2356';
console.log(char); // Output: ⍖
Java:
char c = '\u2356';
System.out.println(c); // Output: ⍖
JSON:
{"text": "\u2356"} // Value: ⍖
Python:
char = '\u2356'
print(char) # Output: ⍖
Perl:
my $char = "\x{2356}";
print $char; # Output: ⍖
PHP:
$char = "\x{2356}";
echo $char; // Output: ⍖
Ruby:
char = "\u{2356}"
puts char # Output: ⍖
Rust:
let c = '\u{2356}';
println!("{}", c); // Output: ⍖
Go:
char := '\u2356'
fmt.Printf("%c\n", char) // Output: ⍖
CSS:
/* CSS content property */
.element::before {
content: "\002356"; /* 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%96
MD5:
383f9d1975f29cc74b342a1caaff27dc
SHA1:
c8ff79a161494cb8d89d96508ed16ad4023c94bf
Base64:
4o2W