Unicode Finder

"쀘" U+C018(HANGUL SYLLABLE BBWESS)

U+C018
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWESS

Programming

C
\uC018
JavaScript
\uC018
Java
\uC018
Json
\uC018
Python
\uC018
Perl
\x{C018}
PHP
\x{C018}
Ruby
\u{C018}
Rust
\u{C018}
Go
\uC018

Web

CSS
\00C018
HtmlDecimal
쀘
HtmlHexadecimal
쀘
Url
%EC%80%98

Code

MD5
72b89edd97270a565d3238c5c474d0bc
Sha1
9c333cb00d97635c9fc4b9f1f7c3123b12072da0
Base64
7ICY

사용 예시

Programming Languages

C:

char c = '\uC018';
printf("%c\n", c);  // Output: 쀘

JavaScript:

const char = '\uC018';
console.log(char);  // Output: 쀘

Java:

char c = '\uC018';
System.out.println(c);  // Output: 쀘

JSON:

{"text": "\uC018"}  // Value: 쀘

Python:

char = '\uC018'
print(char)  # Output: 쀘

Perl:

my $char = "\x{C018}";
print $char;  # Output: 쀘

PHP:

$char = "\x{C018}";
echo $char;  // Output: 쀘

Ruby:

char = "\u{C018}"
puts char  # Output: 쀘

Rust:

let c = '\u{C018}';
println!("{}", c);  // Output: 쀘

Go:

char := '\uC018'
fmt.Printf("%c\n", char)  // Output: 쀘

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00C018";  /* Display: 쀘 */
}

HTML Decimal:

<p>HTML decimal: &#49176;</p>  <!-- Display: 쀘 -->

HTML Hexadecimal:

<p>HTML hex: &#xC018;</p>  <!-- Display: 쀘 -->

URL Encoding:

// 쀘 URL encoding
https://unicodefinder.com/search.php?query=%EC%80%98

Encodings

MD5:

72b89edd97270a565d3238c5c474d0bc

SHA1:

9c333cb00d97635c9fc4b9f1f7c3123b12072da0

Base64:

7ICY