answersLogoWhite

0

colon hyphen P, aka :-P is basically a funny face sideways. The colon are the eyes, the hyphen is the nose and the P is the mouth with its tongue sticking out.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

What is a colon and a hyphen?

A colon is this : and a hyphen is this -


What does colon hyphen asterisk mean?

:-* is email/sms shorthand for "kiss." eyes : nose - lips *


Is fast-food have a hyphen?

yes.And your question should be "Does fast-food have a hyphen?". Sorry, don't mean to be an english teacher :p


What punctuation marks may NOT be used as end punctuation?

comma, semi-colon, hyphen, colon, speech marks.


What does the hyphen mean in an emoticon?

In an emoticon, the hyphen typically represents the eyes of the emoticon, particularly in representations of faces. For example, in the emoticon ": -)", the hyphen serves as a neutral or straight line for the eyes, while the colon represents the mouth. This usage helps convey a specific expression or emotion, such as a simple smile or a neutral face.


What do you type for smileys?

the equal sign or the colon or a semi colon with a p or a parenthesis :) :p ;) ;p =)


What is placed between a starting value and ending value defining a range?

A symbol such as a comma, a colon or a hyphen.


What are the 14 punctuat?

comma, period, colon, semi-colon, quotation marks, parentheses, brackets, braces, question mark, exclamation point, elipses, hyphen, dash, apostrophe.


Is there a hyphen in between 19?

If you mean the word for 19, then there is no hyphen and it is nineteen, not nine-teen.


What does a colon in math mean?

In mathematics, a colon (:) is often used to denote a ratio or a division between two quantities. For example, the expression "a : b" represents the ratio of (a) to (b). Additionally, in set notation, a colon can indicate such a relationship as in "x ∈ A : P(x)", meaning "x is an element of set A such that property P holds for x."


How do you make a raspberry from your keyboard?

colon plus capital P - :P


C plus plus programs - to replace every space in a string with a hyphen?

char *string = "this is a test"; char *p; for (p=string; *p!='\0'; p++) if (*p==' ') *p='-';