C:
char c = '\u2A4B';
printf("%c\n", c); // Output: ⩋
JavaScript:
const char = '\u2A4B';
console.log(char); // Output: ⩋
Java:
char c = '\u2A4B';
System.out.println(c); // Output: ⩋
JSON:
{"text": "\u2A4B"} // Value: ⩋
Python:
char = '\u2A4B'
print(char) # Output: ⩋
Perl:
my $char = "\x{2A4B}";
print $char; # Output: ⩋
PHP:
$char = "\x{2A4B}";
echo $char; // Output: ⩋
Ruby:
char = "\u{2A4B}"
puts char # Output: ⩋
Rust:
let c = '\u{2A4B}';
println!("{}", c); // Output: ⩋
Go:
char := '\u2A4B'
fmt.Printf("%c\n", char) // Output: ⩋
CSS:
/* CSS content property */
.element::before {
content: "\002A4B"; /* 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%A9%8B
MD5:
b714d7d43cf05eff720fb8c78700a94d
SHA1:
17008ada923fbab4d8386ea9ec1bb1b58752c4e5
Base64:
4qmL