C:
char c = '\uA085';
printf("%c\n", c); // Output: ꂅ
JavaScript:
const char = '\uA085';
console.log(char); // Output: ꂅ
Java:
char c = '\uA085';
System.out.println(c); // Output: ꂅ
JSON:
{"text": "\uA085"} // Value: ꂅ
Python:
char = '\uA085'
print(char) # Output: ꂅ
Perl:
my $char = "\x{A085}";
print $char; # Output: ꂅ
PHP:
$char = "\x{A085}";
echo $char; // Output: ꂅ
Ruby:
char = "\u{A085}"
puts char # Output: ꂅ
Rust:
let c = '\u{A085}';
println!("{}", c); // Output: ꂅ
Go:
char := '\uA085'
fmt.Printf("%c\n", char) // Output: ꂅ
CSS:
/* CSS content property */
.element::before {
content: "\00A085"; /* 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=%EA%82%85
MD5:
57f1e0360c125a4f32c0b48f519f5d51
SHA1:
a32adabe3dc8a0806885cf4949f64858e10afd43
Base64:
6oKF