Unicode Finder

"쀈" U+C008(HANGUL SYLLABLE BBWEN)

U+C008
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWEN

Programming

C
\uC008
JavaScript
\uC008
Java
\uC008
Json
\uC008
Python
\uC008
Perl
\x{C008}
PHP
\x{C008}
Ruby
\u{C008}
Rust
\u{C008}
Go
\uC008

Web

CSS
\00C008
HtmlDecimal
쀈
HtmlHexadecimal
쀈
Url
%EC%80%88

Code

MD5
46ebc779c02edbf375b10968a8d8e12f
Sha1
3336efb52153da09341ffc4c8f30a2d86190b505
Base64
7ICI

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC008';
console.log(char);  // Output: 쀈

Java:

char c = '\uC008';
System.out.println(c);  // Output: 쀈

JSON:

{"text": "\uC008"}  // Value: 쀈

Python:

char = '\uC008'
print(char)  # Output: 쀈

Perl:

my $char = "\x{C008}";
print $char;  # Output: 쀈

PHP:

$char = "\x{C008}";
echo $char;  // Output: 쀈

Ruby:

char = "\u{C008}"
puts char  # Output: 쀈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49160;</p>  <!-- Display: 쀈 -->

HTML Hexadecimal:

<p>HTML hex: &#xC008;</p>  <!-- Display: 쀈 -->

URL Encoding:

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

Encodings

MD5:

46ebc779c02edbf375b10968a8d8e12f

SHA1:

3336efb52153da09341ffc4c8f30a2d86190b505

Base64:

7ICI