Unicode Finder

"쀟" U+C01F(HANGUL SYLLABLE BBWEH)

U+C01F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWEH

Programming

C
\uC01F
JavaScript
\uC01F
Java
\uC01F
Json
\uC01F
Python
\uC01F
Perl
\x{C01F}
PHP
\x{C01F}
Ruby
\u{C01F}
Rust
\u{C01F}
Go
\uC01F

Web

CSS
\00C01F
HtmlDecimal
쀟
HtmlHexadecimal
쀟
Url
%EC%80%9F

Code

MD5
d8c6b95f4d464e25f364181b398f8b22
Sha1
d4f54ffccb0fdf890149dc68b22ca024a2f2f54f
Base64
7ICf

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC01F';
console.log(char);  // Output: 쀟

Java:

char c = '\uC01F';
System.out.println(c);  // Output: 쀟

JSON:

{"text": "\uC01F"}  // Value: 쀟

Python:

char = '\uC01F'
print(char)  # Output: 쀟

Perl:

my $char = "\x{C01F}";
print $char;  # Output: 쀟

PHP:

$char = "\x{C01F}";
echo $char;  // Output: 쀟

Ruby:

char = "\u{C01F}"
puts char  # Output: 쀟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49183;</p>  <!-- Display: 쀟 -->

HTML Hexadecimal:

<p>HTML hex: &#xC01F;</p>  <!-- Display: 쀟 -->

URL Encoding:

// 쀟 URL encoding
https://unicodefinder.com/search.php?query=%EC%80%9F

Encodings

MD5:

d8c6b95f4d464e25f364181b398f8b22

SHA1:

d4f54ffccb0fdf890149dc68b22ca024a2f2f54f

Base64:

7ICf