C:
char c = '\uA0AE';
printf("%c\n", c); // Output: ꂮ
JavaScript:
const char = '\uA0AE';
console.log(char); // Output: ꂮ
Java:
char c = '\uA0AE';
System.out.println(c); // Output: ꂮ
JSON:
{"text": "\uA0AE"} // Value: ꂮ
Python:
char = '\uA0AE'
print(char) # Output: ꂮ
Perl:
my $char = "\x{A0AE}";
print $char; # Output: ꂮ
PHP:
$char = "\x{A0AE}";
echo $char; // Output: ꂮ
Ruby:
char = "\u{A0AE}"
puts char # Output: ꂮ
Rust:
let c = '\u{A0AE}';
println!("{}", c); // Output: ꂮ
Go:
char := '\uA0AE'
fmt.Printf("%c\n", char) // Output: ꂮ
CSS:
/* CSS content property */
.element::before {
content: "\00A0AE"; /* 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%AE
MD5:
b52838bd6b00574ddb1ef2d58e89b052
SHA1:
6157713dd2b52d1d9f7f6205ff80694e613fc2f3
Base64:
6oKu