C:
char c = '\u204C';
printf("%c\n", c); // Output: ⁌
JavaScript:
const char = '\u204C';
console.log(char); // Output: ⁌
Java:
char c = '\u204C';
System.out.println(c); // Output: ⁌
JSON:
{"text": "\u204C"} // Value: ⁌
Python:
char = '\u204C'
print(char) # Output: ⁌
Perl:
my $char = "\x{204C}";
print $char; # Output: ⁌
PHP:
$char = "\x{204C}";
echo $char; // Output: ⁌
Ruby:
char = "\u{204C}"
puts char # Output: ⁌
Rust:
let c = '\u{204C}';
println!("{}", c); // Output: ⁌
Go:
char := '\u204C'
fmt.Printf("%c\n", char) // Output: ⁌
CSS:
/* CSS content property */
.element::before {
content: "\00204C"; /* 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%81%8C
MD5:
9d564ea7f1b816de12ded1b23fc20388
SHA1:
71594faefeb32dfdab1189de36fa01a7f53c68c8
Base64:
4oGM