Unicode Finder

"쁫" U+C06B(HANGUL SYLLABLE BBEUS)

U+C06B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBEUS

Programming

C
\uC06B
JavaScript
\uC06B
Java
\uC06B
Json
\uC06B
Python
\uC06B
Perl
\x{C06B}
PHP
\x{C06B}
Ruby
\u{C06B}
Rust
\u{C06B}
Go
\uC06B

Web

CSS
\00C06B
HtmlDecimal
쁫
HtmlHexadecimal
쁫
Url
%EC%81%AB

Code

MD5
2af3ac8bc65d9a47f9f524bd6d9a3637
Sha1
f8855c021996eb55d83297fc129d4eb3e58f5651
Base64
7IGr

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC06B';
console.log(char);  // Output: 쁫

Java:

char c = '\uC06B';
System.out.println(c);  // Output: 쁫

JSON:

{"text": "\uC06B"}  // Value: 쁫

Python:

char = '\uC06B'
print(char)  # Output: 쁫

Perl:

my $char = "\x{C06B}";
print $char;  # Output: 쁫

PHP:

$char = "\x{C06B}";
echo $char;  // Output: 쁫

Ruby:

char = "\u{C06B}"
puts char  # Output: 쁫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49259;</p>  <!-- Display: 쁫 -->

HTML Hexadecimal:

<p>HTML hex: &#xC06B;</p>  <!-- Display: 쁫 -->

URL Encoding:

// 쁫 URL encoding
https://unicodefinder.com/search.php?query=%EC%81%AB

Encodings

MD5:

2af3ac8bc65d9a47f9f524bd6d9a3637

SHA1:

f8855c021996eb55d83297fc129d4eb3e58f5651

Base64:

7IGr