BotDetect CAPTCHA Spanish Localization
This page contains the details of Spanish Captcha (Captcha Español) locales fully supported by BotDetect, for which there are both localized Captcha images and Captcha sounds available.
Supported Spanish CAPTCHA Locales
Spanish CAPTCHA
Captcha Locale overview:
| Language | Country | BotDetect Locale settings |
|---|---|---|
| Spanish | Spain | es, es-ES |
Examples and specifications of individual Captcha feature localizations:
Spanish Localized CAPTCHA Images
Example Captcha images generated by BotDetect using the base Latin character set for all Captcha ImageStyle values can be seen in the BotDetect Captcha image styles demo
To use BotDetect Captcha images localized for the Spanish Captcha Locale in your application, you can specify the Locale value:
- In ASP.NET applications, you can use either the
.aspxpage source:<!-- Captcha control localized to Spanish --> <BotDetect:Captcha ID="SampleCaptcha" runat="server" Locale="es-ES" />
or the page code-behind:[C#] // Set the Captcha instance Locale to Spanish SampleCaptcha.Locale = "es-ES";[VB.NET] ' Set the Captcha instance Locale to Spanish SampleCaptcha.Locale = "es-ES"Locale-dependent Captcha strings can be configured in the
<botDetect> Web.configconfiguration section. - In ASP Classic applications, you can use either the application-global setting in the
BotDetect\CaptchaConfig.aspfile:' Set the default Locale for all Captcha instances in the ' Classic ASP application to Spanish LBD_Configuration_Locale = "es-ES"
or the Captcha object instance-specific value:<% Dim SampleCaptcha : Set SampleCaptcha = (New Captcha)("SampleCaptcha") SampleCaptcha.UserInputID = "CaptchaCode" ' Set the Captcha object instance Locale to Spanish SampleCaptcha.Locale = "es-ES" Response.Write SampleCaptcha.Html %>
Spanish Localized CAPTCHA Sounds
Example Captcha sounds generated by BotDetect using the Spanish Locale setting can be heard in the BotDetect Captcha features demo
To use BotDetect sounds localized for the Spanish Captcha Locale, you should also download the Spanish Pronunciation Sound Package and deploy the .bdsp file to the BotDetectSounds folder your application uses:
- ASP.NET applications use
Bin\BotDetectSoundsby default. A custom folder can be specified in the<botDetect>configuration section. - ASP Classic applications use
Redistribute\BotDetectSoundsin the BotDetect installation folder by default. A custom folder can be specified in theBotDetect/CaptchaConfig.aspfile.
Spanish Localized CAPTCHA Codes
The es-ES Captcha locale uses the default Latin character set, consisting of 26 characters.
CodeStyle.Alpha Spanish CAPTCHA Characters
| Unicode code point | Name | Character |
|---|---|---|
0x0041 |
a | A |
0x0042 |
be | B |
0x0043 |
ce | C |
0x0044 |
de | D |
0x0045 |
e | E |
0x0046 |
efe | F (not used) |
0x0047 |
ge | G (not used) |
0x0048 |
hache | H |
0x0049 |
i | I (not used) |
0x004A |
jota | J |
0x004B |
ka | K |
0x004C |
ele | L (not used) |
0x004D |
eme | M |
0x004E |
ene | N |
0x004F |
o | O |
0x0050 |
pe | P |
0x0051 |
cu | Q (not used) |
0x0052 |
erre | R |
0x0053 |
ese | S |
0x0054 |
te | T |
0x0055 |
u | U |
0x0056 |
uve | V |
0x0057 |
uve doble | W |
0x0058 |
equis | X |
0x0059 |
i griega | Y |
0x005A |
zeta | Z |
CodeStyle.Numeric Spanish CAPTCHA Characters
| Unicode code point | Name | Character |
|---|---|---|
0x0030 |
zero | 0 |
0x0031 |
one | 1 |
0x0032 |
two | 2 |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
CodeStyle.Alphanumeric Spanish CAPTCHA Characters
| Unicode code point | Name | Character |
|---|---|---|
0x0041 |
a | A |
0x0042 |
be | B |
0x0043 |
ce | C |
0x0044 |
de | D |
0x0045 |
e | E |
0x0046 |
efe | F (not used) |
0x0047 |
ge | G (not used) |
0x0048 |
hache | H |
0x0049 |
i | I (not used) |
0x004A |
jota | J |
0x004B |
ka | K |
0x004C |
ele | L (not used) |
0x004D |
eme | M |
0x004E |
ene | N |
0x004F |
o | O (not used) |
0x0050 |
pe | P |
0x0051 |
cu | Q (not used) |
0x0052 |
erre | R |
0x0053 |
ese | S |
0x0054 |
te | T |
0x0055 |
u | U |
0x0056 |
uve | V |
0x0057 |
uve doble | W |
0x0058 |
equis | X |
0x0059 |
i griega | Y |
0x005A |
zeta | Z (not used) |
0x0030 |
zero | 0 (not used) |
0x0031 |
one | 1 (not used) |
0x0032 |
two | 2 (not used) |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
If you want to customize the exact character set used for Captcha code generation, you can specify your custom charsets in both ASP.NET and Classic ASP implementations of BotDetect.
Argentinian Spanish CAPTCHA
Captcha Locale overview:
| Language | Country | BotDetect Locale settings |
|---|---|---|
| Argentinian Spanish | Argentina | es-AR |
Examples and specifications of individual Captcha feature localizations:
- Argentinian Spanish localized Captcha images
- Argentinian Spanish localized Captcha sounds
- Argentinian Spanish localized Captcha codes
Argentinian Spanish Localized CAPTCHA Images
Example Captcha images generated by BotDetect using the base Latin character set for all Captcha ImageStyle values can be seen in the BotDetect Captcha image styles demo
To use BotDetect Captcha images localized for the Argentinian Spanish Captcha Locale in your application, you can specify the Locale value:
- In ASP.NET applications, you can use either the
.aspxpage source:<!-- Captcha control localized to Argentinian Spanish --> <BotDetect:Captcha ID="SampleCaptcha" runat="server" Locale="es-AR" />
or the page code-behind:[C#] // Set the Captcha instance Locale to Argentinian Spanish SampleCaptcha.Locale = "es-AR";[VB.NET] ' Set the Captcha instance Locale to Argentinian Spanish SampleCaptcha.Locale = "es-AR"Locale-dependent Captcha strings can be configured in the
<botDetect> Web.configconfiguration section. - In ASP Classic applications, you can use either the application-global setting in the
BotDetect\CaptchaConfig.aspfile:' Set the default Locale for all Captcha instances in the ' Classic ASP application to Argentinian Spanish LBD_Configuration_Locale = "es-AR"
or the Captcha object instance-specific value:<% Dim SampleCaptcha : Set SampleCaptcha = (New Captcha)( "SampleCaptcha") SampleCaptcha.UserInputID = "CaptchaCode" ' Set the Captcha object instance Locale to Argentinian Spanish SampleCaptcha.Locale = "es-AR" Response.Write SampleCaptcha.Html %>
Argentinian Spanish Localized CAPTCHA Sounds
Example Captcha sounds generated by BotDetect using the Argentinian Spanish Locale setting can be heard in the BotDetect Captcha features demo
To use BotDetect sounds localized for the Argentinian Spanish Captcha Locale, you should also download the Argentinian Spanish Pronunciation Sound Package and deploy the .bdsp file to the BotDetectSounds folder your application uses:
- ASP.NET applications use
Bin\BotDetectSoundsby default. A custom folder can be specified in the<botDetect>configuration section. - ASP Classic applications use
Redistribute\BotDetectSoundsin the BotDetect installation folder by default. A custom folder can be specified in theBotDetect/CaptchaConfig.aspfile.
Argentinian Spanish Localized CAPTCHA Codes
The es-AR Captcha locale uses the default Latin character set, consisting of 26 characters.
CodeStyle.Alpha Argentinian Spanish CAPTCHA Characters
| Unicode code point | Name | Character |
|---|---|---|
0x0041 |
a | A |
0x0042 |
be | B (not used) |
0x0043 |
ce | C |
0x0044 |
de | D |
0x0045 |
e | E |
0x0046 |
efe | F (not used) |
0x0047 |
ge | G (not used) |
0x0048 |
hache | H |
0x0049 |
i | I (not used) |
0x004A |
jota | J |
0x004B |
ka | K |
0x004C |
ele | L (not used) |
0x004D |
eme | M |
0x004E |
ene | N |
0x004F |
o | O |
0x0050 |
pe | P |
0x0051 |
cu | Q (not used) |
0x0052 |
erre | R |
0x0053 |
ese | S |
0x0054 |
te | T |
0x0055 |
u | U |
0x0056 |
ve | V (not used) |
0x0057 |
doble ve | W |
0x0058 |
equis | X |
0x0059 |
i griega | Y |
0x005A |
zeta | Z |
CodeStyle.Numeric Argentinian Spanish CAPTCHA Characters
| Unicode code point | Name | Character |
|---|---|---|
0x0030 |
zero | 0 |
0x0031 |
one | 1 |
0x0032 |
two | 2 |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
CodeStyle.Alphanumeric Argentinian Spanish CAPTCHA Characters
| Unicode code point | Name | Character |
|---|---|---|
0x0041 |
a | A |
0x0042 |
be | B (not used) |
0x0043 |
ce | C |
0x0044 |
de | D |
0x0045 |
e | E |
0x0046 |
efe | F (not used) |
0x0047 |
ge | G (not used) |
0x0048 |
hache | H |
0x0049 |
i | I (not used) |
0x004A |
jota | J |
0x004B |
ka | K |
0x004C |
ele | L (not used) |
0x004D |
eme | M |
0x004E |
ene | N |
0x004F |
o | O (not used) |
0x0050 |
pe | P |
0x0051 |
cu | Q (not used) |
0x0052 |
erre | R |
0x0053 |
ese | S |
0x0054 |
te | T |
0x0055 |
u | U |
0x0056 |
ve | V (not used) |
0x0057 |
doble ve | W |
0x0058 |
equis | X |
0x0059 |
i griega | Y |
0x005A |
zeta | Z (not used) |
0x0030 |
zero | 0 (not used) |
0x0031 |
one | 1 (not used) |
0x0032 |
two | 2 (not used) |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
If you want to customize the exact character set used for Captcha code generation, you can specify your custom charsets in both ASP.NET and Classic ASP implementations of BotDetect.
Chilean Spanish CAPTCHA
Captcha Locale overview:
| Language | Country | BotDetect Locale settings |
|---|---|---|
| Chilean Spanish | Chile | es-CL |
Examples and specifications of individual Captcha feature localizations:
- Chilean Spanish localized Captcha images
- Chilean Spanish localized Captcha sounds
- Chilean Spanish localized Captcha codes
Chilean Spanish Localized CAPTCHA Images
Example Captcha images generated by BotDetect using the base Latin character set for all Captcha ImageStyle values can be seen in the BotDetect Captcha image styles demo
To use BotDetect Captcha images localized for the Chilean Spanish Captcha Locale in your application, you can specify the Locale value:
- In ASP.NET applications, you can use either the
.aspxpage source:<!-- Captcha control localized to Chilean Spanish --> <BotDetect:Captcha ID="SampleCaptcha" runat="server" Locale="es-CL" />
or the page code-behind:[C#] // Set the Captcha instance Locale to Chilean Spanish SampleCaptcha.Locale = "es-CL";[VB.NET] ' Set the Captcha instance Locale to Chilean Spanish SampleCaptcha.Locale = "es-CL"Locale-dependent Captcha strings can be configured in the
<botDetect> Web.configconfiguration section. - In ASP Classic applications, you can use either the application-global setting in the
BotDetect\CaptchaConfig.aspfile:' Set the default Locale for all Captcha instances in the ' Classic ASP application to Chilean Spanish LBD_Configuration_Locale = "es-CL"
or the Captcha object instance-specific value:<% Dim SampleCaptcha : Set SampleCaptcha = (New Captcha)("SampleCaptcha") SampleCaptcha.UserInputID = "CaptchaCode" ' Set the Captcha object instance Locale to Chilean Spanish SampleCaptcha.Locale = "es-CL" Response.Write SampleCaptcha.Html %>
Chilean Spanish Localized CAPTCHA Sounds
Example Captcha sounds generated by BotDetect using the Chilean Spanish Locale setting can be heard in the BotDetect Captcha features demo
To use BotDetect sounds localized for the Chilean Spanish Captcha Locale, you should also download the Chilean Spanish Pronunciation Sound Package and deploy the .bdsp file to the BotDetectSounds folder your application uses:
- ASP.NET applications use
Bin\BotDetectSoundsby default. A custom folder can be specified in the<botDetect>configuration section. - ASP Classic applications use
Redistribute\BotDetectSoundsin the BotDetect installation folder by default. A custom folder can be specified in theBotDetect/CaptchaConfig.aspfile.
Chilean Spanish Localized CAPTCHA Codes
The es-CL Captcha locale uses the default Latin character set, consisting of 26 characters.
CodeStyle.Alpha Chilean Spanish CAPTCHA Characters
| Unicode code point | Name | Character |
|---|---|---|
0x0041 |
a | A |
0x0042 |
be | B (not used) |
0x0043 |
ce | C |
0x0044 |
de | D |
0x0045 |
e | E |
0x0046 |
efe | F (not used) |
0x0047 |
ge | G (not used) |
0x0048 |
hache | H |
0x0049 |
i | I (not used) |
0x004A |
jota | J |
0x004B |
ka | K |
0x004C |
ele | L (not used) |
0x004D |
eme | M |
0x004E |
ene | N |
0x004F |
o | O |
0x0050 |
pe | P |
0x0051 |
cu | Q (not used) |
0x0052 |
erre | R |
0x0053 |
ese | S |
0x0054 |
te | T |
0x0055 |
u | U |
0x0056 |
be | V (not used) |
0x0057 |
doble ve | W |
0x0058 |
equis | X |
0x0059 |
i griega | Y |
0x005A |
zeta | Z |
CodeStyle.Numeric Chilean Spanish CAPTCHA Characters
| Unicode code point | Name | Character |
|---|---|---|
0x0030 |
zero | 0 |
0x0031 |
one | 1 |
0x0032 |
two | 2 |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
CodeStyle.Alphanumeric Chilean Spanish CAPTCHA Characters
| Unicode code point | Name | Character |
|---|---|---|
0x0041 |
a | A |
0x0042 |
be | B (not used) |
0x0043 |
ce | C |
0x0044 |
de | D |
0x0045 |
e | E |
0x0046 |
efe | F (not used) |
0x0047 |
ge | G (not used) |
0x0048 |
hache | H |
0x0049 |
i | I (not used) |
0x004A |
jota | J |
0x004B |
ka | K |
0x004C |
ele | L (not used) |
0x004D |
eme | M |
0x004E |
ene | N |
0x004F |
o | O (not used) |
0x0050 |
pe | P |
0x0051 |
cu | Q (not used) |
0x0052 |
erre | R |
0x0053 |
ese | S |
0x0054 |
te | T |
0x0055 |
u | U |
0x0056 |
be | V (not used) |
0x0057 |
doble ve | W |
0x0058 |
equis | X |
0x0059 |
i griega | Y |
0x005A |
zeta | Z (not used) |
0x0030 |
zero | 0 (not used) |
0x0031 |
one | 1 (not used) |
0x0032 |
two | 2 (not used) |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
If you want to customize the exact character set used for Captcha code generation, you can specify your custom charsets in both ASP.NET and Classic ASP implementations of BotDetect.
Mexican Spanish CAPTCHA
Captcha Locale overview:
| Language | Country | BotDetect Locale settings |
|---|---|---|
| Mexican Spanish | Mexico | es-MX |
Examples and specifications of individual Captcha feature localizations:
- Mexican Spanish localized Captcha images
- Mexican Spanish localized Captcha sounds
- Mexican Spanish localized Captcha codes
Mexican Spanish Localized CAPTCHA Images
Example Captcha images generated by BotDetect using the base Latin character set for all Captcha ImageStyle values can be seen in the BotDetect Captcha image styles demo
To use BotDetect Captcha images localized for the Mexican Spanish Captcha Locale in your application, you can specify the Locale value:
- In ASP.NET applications, you can use either the
.aspxpage source:<!-- Captcha control localized to Mexican Spanish --> <BotDetect:Captcha ID="SampleCaptcha" runat="server" Locale="es-MX" />
or the page code-behind:[C#] // Set the Captcha instance Locale to Mexican Spanish SampleCaptcha.Locale = "es-MX";[VB.NET] ' Set the Captcha instance Locale to Mexican Spanish SampleCaptcha.Locale = "es-MX"Locale-dependent Captcha strings can be configured in the
<botDetect> Web.configconfiguration section. - In ASP Classic applications, you can use either the application-global setting in the
BotDetect\CaptchaConfig.aspfile:' Set the default Locale for all Captcha instances in the ' Classic ASP application to Mexican Spanish LBD_Configuration_Locale = "es-MX"
or the Captcha object instance-specific value:<% Dim SampleCaptcha : Set SampleCaptcha = (New Captcha)("SampleCaptcha") SampleCaptcha.UserInputID = "CaptchaCode" ' Set the Captcha object instance Locale to Mexican Spanish SampleCaptcha.Locale = "es-MX" Response.Write SampleCaptcha.Html %>
Mexican Spanish Localized CAPTCHA Sounds
Example Captcha sounds generated by BotDetect using the Mexican Spanish Locale setting can be heard in the BotDetect Captcha features demo
To use BotDetect sounds localized for the Mexican Spanish Captcha Locale, you should also download the Mexican Spanish Pronunciation Sound Package and deploy the .bdsp file to the BotDetectSounds folder your application uses:
- ASP.NET applications use
Bin\BotDetectSoundsby default. A custom folder can be specified in the<botDetect>configuration section. - ASP Classic applications use
Redistribute\BotDetectSoundsin the BotDetect installation folder by default. A custom folder can be specified in theBotDetect/CaptchaConfig.aspfile.
Mexican Spanish Localized CAPTCHA Codes
The es-MX Captcha locale uses the default Latin character set, consisting of 26 characters.
CodeStyle.Alpha Mexican Spanish CAPTCHA Characters
| Unicode code point | Name | Character |
|---|---|---|
0x0041 |
a | A |
0x0042 |
be | B (not used) |
0x0043 |
ce | C |
0x0044 |
de | D |
0x0045 |
e | E |
0x0046 |
efe | F (not used) |
0x0047 |
ge | G (not used) |
0x0048 |
hache | H |
0x0049 |
i | I (not used) |
0x004A |
jota | J |
0x004B |
ka | K |
0x004C |
ele | L (not used) |
0x004D |
eme | M |
0x004E |
ene | N |
0x004F |
o | O |
0x0050 |
pe | P |
0x0051 |
cu | Q (not used) |
0x0052 |
erre | R |
0x0053 |
ese | S |
0x0054 |
te | T |
0x0055 |
u | U |
0x0056 |
uve | V (not used) |
0x0057 |
doble u | W |
0x0058 |
equis | X |
0x0059 |
i griega | Y |
0x005A |
zeta | Z |
CodeStyle.Numeric Mexican Spanish CAPTCHA Characters
| Unicode code point | Name | Character |
|---|---|---|
0x0030 |
zero | 0 |
0x0031 |
one | 1 |
0x0032 |
two | 2 |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
CodeStyle.Alphanumeric Mexican Spanish CAPTCHA Characters
| Unicode code point | Name | Character |
|---|---|---|
0x0041 |
a | A |
0x0042 |
be | B (not used) |
0x0043 |
ce | C |
0x0044 |
de | D |
0x0045 |
e | E |
0x0046 |
efe | F (not used) |
0x0047 |
ge | G (not used) |
0x0048 |
hache | H |
0x0049 |
i | I (not used) |
0x004A |
jota | J |
0x004B |
ka | K |
0x004C |
ele | L (not used) |
0x004D |
eme | M |
0x004E |
ene | N |
0x004F |
o | O (not used) |
0x0050 |
pe | P |
0x0051 |
cu | Q (not used) |
0x0052 |
erre | R |
0x0053 |
ese | S |
0x0054 |
te | T |
0x0055 |
u | U |
0x0056 |
uve | V (not used) |
0x0057 |
doble u | W |
0x0058 |
equis | X |
0x0059 |
i griega | Y |
0x005A |
zeta | Z (not used) |
0x0030 |
zero | 0 (not used) |
0x0031 |
one | 1 (not used) |
0x0032 |
two | 2 (not used) |
0x0033 |
three | 3 |
0x0034 |
four | 4 |
0x0035 |
five | 5 |
0x0036 |
six | 6 |
0x0037 |
seven | 7 (not used) |
0x0038 |
eight | 8 |
0x0039 |
nine | 9 |
If you want to customize the exact character set used for Captcha code generation, you can specify your custom charsets in both ASP.NET and Classic ASP implementations of BotDetect.
Current BotDetect Versions
- BotDetect PHP CAPTCHA v3.0.Alpha12012–02–06
- BotDetect ASP.NET CAPTCHA v3.0.92011–11–21
- BotDetect ASP Classic CAPTCHA v3.0.92011–11–21




