C:
char c = '\u2771';
printf("%c\n", c); // Output: ❱
JavaScript:
const char = '\u2771';
console.log(char); // Output: ❱
Java:
char c = '\u2771';
System.out.println(c); // Output: ❱
JSON:
{"text": "\u2771"} // Value: ❱
Python:
char = '\u2771'
print(char) # Output: ❱
Perl:
my $char = "\x{2771}";
print $char; # Output: ❱
PHP:
$char = "\x{2771}";
echo $char; // Output: ❱
Ruby:
char = "\u{2771}"
puts char # Output: ❱
Rust:
let c = '\u{2771}';
println!("{}", c); // Output: ❱
Go:
char := '\u2771'
fmt.Printf("%c\n", char) // Output: ❱
CSS:
/* CSS content property */
.element::before {
content: "\002771"; /* 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%9D%B1
MD5:
1aa1e3a24c2f96c0dbbb00cfe004df1e
SHA1:
bbe1aee88b088c94df4874f9a38fb0350507bb99
Base64:
4p2x