C:
char c = '\uA755';
printf("%c\n", c); // Output: ꝕ
JavaScript:
const char = '\uA755';
console.log(char); // Output: ꝕ
Java:
char c = '\uA755';
System.out.println(c); // Output: ꝕ
JSON:
{"text": "\uA755"} // Value: ꝕ
Python:
char = '\uA755'
print(char) # Output: ꝕ
Perl:
my $char = "\x{A755}";
print $char; # Output: ꝕ
PHP:
$char = "\x{A755}";
echo $char; // Output: ꝕ
Ruby:
char = "\u{A755}"
puts char # Output: ꝕ
Rust:
let c = '\u{A755}';
println!("{}", c); // Output: ꝕ
Go:
char := '\uA755'
fmt.Printf("%c\n", char) // Output: ꝕ
CSS:
/* CSS content property */
.element::before {
content: "\00A755"; /* 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%9D%95
MD5:
c4534b0954531ff71fa9237bda502cb4
SHA1:
77043726e219989a168b5362a3383413b7e12d79
Base64:
6p2V