C:
char c = '\u2780';
printf("%c\n", c); // Output: ➀
JavaScript:
const char = '\u2780';
console.log(char); // Output: ➀
Java:
char c = '\u2780';
System.out.println(c); // Output: ➀
JSON:
{"text": "\u2780"} // Value: ➀
Python:
char = '\u2780'
print(char) # Output: ➀
Perl:
my $char = "\x{2780}";
print $char; # Output: ➀
PHP:
$char = "\x{2780}";
echo $char; // Output: ➀
Ruby:
char = "\u{2780}"
puts char # Output: ➀
Rust:
let c = '\u{2780}';
println!("{}", c); // Output: ➀
Go:
char := '\u2780'
fmt.Printf("%c\n", char) // Output: ➀
CSS:
/* CSS content property */
.element::before {
content: "\002780"; /* 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%80
MD5:
8d2d58366dd1033327bad656cbfcc8f1
SHA1:
8a4e5b23f948d77d452e86d8da73d3ed47448ccf
Base64:
4p6A