C:
char c = '\u2354';
printf("%c\n", c); // Output: ⍔
JavaScript:
const char = '\u2354';
console.log(char); // Output: ⍔
Java:
char c = '\u2354';
System.out.println(c); // Output: ⍔
JSON:
{"text": "\u2354"} // Value: ⍔
Python:
char = '\u2354'
print(char) # Output: ⍔
Perl:
my $char = "\x{2354}";
print $char; # Output: ⍔
PHP:
$char = "\x{2354}";
echo $char; // Output: ⍔
Ruby:
char = "\u{2354}"
puts char # Output: ⍔
Rust:
let c = '\u{2354}';
println!("{}", c); // Output: ⍔
Go:
char := '\u2354'
fmt.Printf("%c\n", char) // Output: ⍔
CSS:
/* CSS content property */
.element::before {
content: "\002354"; /* 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%94
MD5:
6ae1a2a6309506fdcfecd7534f3df6d5
SHA1:
f67cecd863936b2b6069b00ad4aece3ef0708ce3
Base64:
4o2U