Unicode Finder

"쀃" U+C003(HANGUL SYLLABLE BBWEOH)

U+C003
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWEOH

Programming

C
\uC003
JavaScript
\uC003
Java
\uC003
Json
\uC003
Python
\uC003
Perl
\x{C003}
PHP
\x{C003}
Ruby
\u{C003}
Rust
\u{C003}
Go
\uC003

Web

CSS
\00C003
HtmlDecimal
쀃
HtmlHexadecimal
쀃
Url
%EC%80%83

Code

MD5
b0b36bd0e16354f8d20cad27e7936eda
Sha1
55dffe1cd03efb40fabc0f76f3dc9d4fa1a8a3e1
Base64
7ICD

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC003';
console.log(char);  // Output: 쀃

Java:

char c = '\uC003';
System.out.println(c);  // Output: 쀃

JSON:

{"text": "\uC003"}  // Value: 쀃

Python:

char = '\uC003'
print(char)  # Output: 쀃

Perl:

my $char = "\x{C003}";
print $char;  # Output: 쀃

PHP:

$char = "\x{C003}";
echo $char;  // Output: 쀃

Ruby:

char = "\u{C003}"
puts char  # Output: 쀃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49155;</p>  <!-- Display: 쀃 -->

HTML Hexadecimal:

<p>HTML hex: &#xC003;</p>  <!-- Display: 쀃 -->

URL Encoding:

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

Encodings

MD5:

b0b36bd0e16354f8d20cad27e7936eda

SHA1:

55dffe1cd03efb40fabc0f76f3dc9d4fa1a8a3e1

Base64:

7ICD