C:
char c = '\u2381';
printf("%c\n", c); // Output: ⎁
JavaScript:
const char = '\u2381';
console.log(char); // Output: ⎁
Java:
char c = '\u2381';
System.out.println(c); // Output: ⎁
JSON:
{"text": "\u2381"} // Value: ⎁
Python:
char = '\u2381'
print(char) # Output: ⎁
Perl:
my $char = "\x{2381}";
print $char; # Output: ⎁
PHP:
$char = "\x{2381}";
echo $char; // Output: ⎁
Ruby:
char = "\u{2381}"
puts char # Output: ⎁
Rust:
let c = '\u{2381}';
println!("{}", c); // Output: ⎁
Go:
char := '\u2381'
fmt.Printf("%c\n", char) // Output: ⎁
CSS:
/* CSS content property */
.element::before {
content: "\002381"; /* 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%8E%81
MD5:
c2f27653c5606c6dbf480cfd05dc4ed5
SHA1:
97f4597006e664f0b3592246c92a194b68c917c8
Base64:
4o6B