C:
char c = '\u2051';
printf("%c\n", c); // Output: ⁑
JavaScript:
const char = '\u2051';
console.log(char); // Output: ⁑
Java:
char c = '\u2051';
System.out.println(c); // Output: ⁑
JSON:
{"text": "\u2051"} // Value: ⁑
Python:
char = '\u2051'
print(char) # Output: ⁑
Perl:
my $char = "\x{2051}";
print $char; # Output: ⁑
PHP:
$char = "\x{2051}";
echo $char; // Output: ⁑
Ruby:
char = "\u{2051}"
puts char # Output: ⁑
Rust:
let c = '\u{2051}';
println!("{}", c); // Output: ⁑
Go:
char := '\u2051'
fmt.Printf("%c\n", char) // Output: ⁑
CSS:
/* CSS content property */
.element::before {
content: "\002051"; /* 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%81%91
MD5:
0554f520a8bfab676c201b4465395b5e
SHA1:
beba1b4792d79c18577e393f43a180c371574240
Base64:
4oGR