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