C:
char c = '\u2772';
printf("%c\n", c); // Output: ❲
JavaScript:
const char = '\u2772';
console.log(char); // Output: ❲
Java:
char c = '\u2772';
System.out.println(c); // Output: ❲
JSON:
{"text": "\u2772"} // Value: ❲
Python:
char = '\u2772'
print(char) # Output: ❲
Perl:
my $char = "\x{2772}";
print $char; # Output: ❲
PHP:
$char = "\x{2772}";
echo $char; // Output: ❲
Ruby:
char = "\u{2772}"
puts char # Output: ❲
Rust:
let c = '\u{2772}';
println!("{}", c); // Output: ❲
Go:
char := '\u2772'
fmt.Printf("%c\n", char) // Output: ❲
CSS:
/* CSS content property */
.element::before {
content: "\002772"; /* 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%9D%B2
MD5:
72dbbe391c1b96a24278cc124723c51d
SHA1:
301113cef620714071afc7b37e08f4a20f1a9262
Base64:
4p2y