C:
char c = '\uA78B';
printf("%c\n", c); // Output: Ꞌ
JavaScript:
const char = '\uA78B';
console.log(char); // Output: Ꞌ
Java:
char c = '\uA78B';
System.out.println(c); // Output: Ꞌ
JSON:
{"text": "\uA78B"} // Value: Ꞌ
Python:
char = '\uA78B'
print(char) # Output: Ꞌ
Perl:
my $char = "\x{A78B}";
print $char; # Output: Ꞌ
PHP:
$char = "\x{A78B}";
echo $char; // Output: Ꞌ
Ruby:
char = "\u{A78B}"
puts char # Output: Ꞌ
Rust:
let c = '\u{A78B}';
println!("{}", c); // Output: Ꞌ
Go:
char := '\uA78B'
fmt.Printf("%c\n", char) // Output: Ꞌ
CSS:
/* CSS content property */
.element::before {
content: "\00A78B"; /* 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%9E%8B
MD5:
123f5245a852feb99f3183c88152d5ac
SHA1:
98102b7bc0fe9db9ddea693ddd5fcd9f6a39768e
Base64:
6p6L