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