C:
char c = '\u2B9C';
printf("%c\n", c); // Output: ⮜
JavaScript:
const char = '\u2B9C';
console.log(char); // Output: ⮜
Java:
char c = '\u2B9C';
System.out.println(c); // Output: ⮜
JSON:
{"text": "\u2B9C"} // Value: ⮜
Python:
char = '\u2B9C'
print(char) # Output: ⮜
Perl:
my $char = "\x{2B9C}";
print $char; # Output: ⮜
PHP:
$char = "\x{2B9C}";
echo $char; // Output: ⮜
Ruby:
char = "\u{2B9C}"
puts char # Output: ⮜
Rust:
let c = '\u{2B9C}';
println!("{}", c); // Output: ⮜
Go:
char := '\u2B9C'
fmt.Printf("%c\n", char) // Output: ⮜
CSS:
/* CSS content property */
.element::before {
content: "\002B9C"; /* 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%AE%9C
MD5:
179e5789b055421aa743635205f61b1f
SHA1:
e6157be5c861255209dd0fd3cded91de8e99a8e2
Base64:
4q6c