How to differentiate between two types of double quotes

Hi @nagini.pragna

Welcome to UiPath community

There are different types of double quotes in UTF-8 encoding, such as:

• " U+0022 QUOTATION MARK

• “ U+201C LEFT DOUBLE QUOTATION MARK

• ” U+201D RIGHT DOUBLE QUOTATION MARK

you can use the ChrW function to get the character by its Unicode value

This will return "
string quote1 = ChrW(34)
This will return “
string quote2 = ChrW(8220)
This will return ”
string quote3 = ChrW(8221)

Check out this thread

Regards
Gokul

1 Like