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