Top "Character" questions

Refers to a symbol that represents a letter or number.

HTML character codes for this ▲ or this ▼

What are the HTML entity character codes for this up arrow (▲) and its downward-facing dog version (▼) ? I've been using GIFs …

html unicode character html-entities
In Java, should I escape a single quotation mark (') in String (double quoted)?

In Java, \' denotes a single quotation mark (single quote) character, and \" denotes a double quotation mark (double quote) character. …

java string escaping character
SQL Server TRIM character

I have the following string: 'BOB*', how do I trim the * so it shows up as 'BOB' I tried …

sql character trim
Characters allowed in GET parameter

Which characters are allowed in GET parameters without encoding or escaping them? I mean something like this: http://www.example.…

parameters get special-characters character
How to get the number of Characters in a String?

How can I get the number of characters of a string in Go? For example, if I have a string "…

string go character string-length
Count occurrences of a char in plain text file

Is there any way under linux/terminal to count, how many times the char f occurs in a plain text …

linux count terminal character
jquery keyup function check if number

i am trying to create an input field where the user can only type in numbers. this function is already …

jquery function character keyup
Look at each character in a string

I was wondering if anyone knew how to look through a string at each character and then add each character …

c# string search character
How to use jQuery to onsubmit and check if the value is 2 - 5 characters?

Let's say I have a text field: Username: <input type="text" id="username" class="required" /> <input type="…

jquery forms submit character
How to decode character pressed from jQuery's keydown()'s event handler

I need to figure out which character was typed into a text field from within the handler that is called …

jquery event-handling character keydown