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