C:
char c = '\u2045';
printf("%c\n", c); // Output: ⁅
JavaScript:
const char = '\u2045';
console.log(char); // Output: ⁅
Java:
char c = '\u2045';
System.out.println(c); // Output: ⁅
JSON:
{"text": "\u2045"} // Value: ⁅
Python:
char = '\u2045'
print(char) # Output: ⁅
Perl:
my $char = "\x{2045}";
print $char; # Output: ⁅
PHP:
$char = "\x{2045}";
echo $char; // Output: ⁅
Ruby:
char = "\u{2045}"
puts char # Output: ⁅
Rust:
let c = '\u{2045}';
println!("{}", c); // Output: ⁅
Go:
char := '\u2045'
fmt.Printf("%c\n", char) // Output: ⁅
CSS:
/* CSS content property */
.element::before {
content: "\002045"; /* 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%85
MD5:
8a1542eb8ba38599aa8a41ffe7ef9950
SHA1:
4ffeab97eb5eb8289d2522d3c41eff5f72b66e6f
Base64:
4oGF