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