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