C:
char c = '\u2941';
printf("%c\n", c); // Output: ⥁
JavaScript:
const char = '\u2941';
console.log(char); // Output: ⥁
Java:
char c = '\u2941';
System.out.println(c); // Output: ⥁
JSON:
{"text": "\u2941"} // Value: ⥁
Python:
char = '\u2941'
print(char) # Output: ⥁
Perl:
my $char = "\x{2941}";
print $char; # Output: ⥁
PHP:
$char = "\x{2941}";
echo $char; // Output: ⥁
Ruby:
char = "\u{2941}"
puts char # Output: ⥁
Rust:
let c = '\u{2941}';
println!("{}", c); // Output: ⥁
Go:
char := '\u2941'
fmt.Printf("%c\n", char) // Output: ⥁
CSS:
/* CSS content property */
.element::before {
content: "\002941"; /* 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%A5%81
MD5:
adc664751e35639e7927eeb75cb7e511
SHA1:
15c18ab6faf5bf9ceaff508dff273e2e99271f1f
Base64:
4qWB