C:
char c = '\u295B';
printf("%c\n", c); // Output: ⥛
JavaScript:
const char = '\u295B';
console.log(char); // Output: ⥛
Java:
char c = '\u295B';
System.out.println(c); // Output: ⥛
JSON:
{"text": "\u295B"} // Value: ⥛
Python:
char = '\u295B'
print(char) # Output: ⥛
Perl:
my $char = "\x{295B}";
print $char; # Output: ⥛
PHP:
$char = "\x{295B}";
echo $char; // Output: ⥛
Ruby:
char = "\u{295B}"
puts char # Output: ⥛
Rust:
let c = '\u{295B}';
println!("{}", c); // Output: ⥛
Go:
char := '\u295B'
fmt.Printf("%c\n", char) // Output: ⥛
CSS:
/* CSS content property */
.element::before {
content: "\00295B"; /* 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%9B
MD5:
c0e08c105de10257750fb750ff3f1ff5
SHA1:
8166eafcd647272bd4f6cb61f4fd65f68fa975d9
Base64:
4qWb