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