Unicode Finder

"쀮" U+C02E(HANGUL SYLLABLE BBWILP)

U+C02E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWILP

Programming

C
\uC02E
JavaScript
\uC02E
Java
\uC02E
Json
\uC02E
Python
\uC02E
Perl
\x{C02E}
PHP
\x{C02E}
Ruby
\u{C02E}
Rust
\u{C02E}
Go
\uC02E

Web

CSS
\00C02E
HtmlDecimal
쀮
HtmlHexadecimal
쀮
Url
%EC%80%AE

Code

MD5
f340910d598aa4c3f4b358505f3cae32
Sha1
90f62f3025a8543b2eab468ad6d23940f7d3d288
Base64
7ICu

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC02E';
console.log(char);  // Output: 쀮

Java:

char c = '\uC02E';
System.out.println(c);  // Output: 쀮

JSON:

{"text": "\uC02E"}  // Value: 쀮

Python:

char = '\uC02E'
print(char)  # Output: 쀮

Perl:

my $char = "\x{C02E}";
print $char;  # Output: 쀮

PHP:

$char = "\x{C02E}";
echo $char;  // Output: 쀮

Ruby:

char = "\u{C02E}"
puts char  # Output: 쀮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49198;</p>  <!-- Display: 쀮 -->

HTML Hexadecimal:

<p>HTML hex: &#xC02E;</p>  <!-- Display: 쀮 -->

URL Encoding:

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

Encodings

MD5:

f340910d598aa4c3f4b358505f3cae32

SHA1:

90f62f3025a8543b2eab468ad6d23940f7d3d288

Base64:

7ICu