C:
char c = '\u27A2';
printf("%c\n", c); // Output: ➢
JavaScript:
const char = '\u27A2';
console.log(char); // Output: ➢
Java:
char c = '\u27A2';
System.out.println(c); // Output: ➢
JSON:
{"text": "\u27A2"} // Value: ➢
Python:
char = '\u27A2'
print(char) # Output: ➢
Perl:
my $char = "\x{27A2}";
print $char; # Output: ➢
PHP:
$char = "\x{27A2}";
echo $char; // Output: ➢
Ruby:
char = "\u{27A2}"
puts char # Output: ➢
Rust:
let c = '\u{27A2}';
println!("{}", c); // Output: ➢
Go:
char := '\u27A2'
fmt.Printf("%c\n", char) // Output: ➢
CSS:
/* CSS content property */
.element::before {
content: "\0027A2"; /* 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%A2
MD5:
f071341f8cbb7ca08fdda1e1e03a97b4
SHA1:
52323340793bb09ee5818a37821ce6d060d1dda2
Base64:
4p6i