Unicode Finder

"뿁" U+BFC1(HANGUL SYLLABLE BBYOB)

U+BFC1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYOB

Programming

C
\uBFC1
JavaScript
\uBFC1
Java
\uBFC1
Json
\uBFC1
Python
\uBFC1
Perl
\x{BFC1}
PHP
\x{BFC1}
Ruby
\u{BFC1}
Rust
\u{BFC1}
Go
\uBFC1

Web

CSS
\00BFC1
HtmlDecimal
뿁
HtmlHexadecimal
뿁
Url
%EB%BF%81

Code

MD5
dc84ec0e8cbf2010eb2b9485530dd8ca
Sha1
80597e48edd876550f6728a0be6ba5bdd6ebb455
Base64
67+B

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFC1';
console.log(char);  // Output: 뿁

Java:

char c = '\uBFC1';
System.out.println(c);  // Output: 뿁

JSON:

{"text": "\uBFC1"}  // Value: 뿁

Python:

char = '\uBFC1'
print(char)  # Output: 뿁

Perl:

my $char = "\x{BFC1}";
print $char;  # Output: 뿁

PHP:

$char = "\x{BFC1}";
echo $char;  // Output: 뿁

Ruby:

char = "\u{BFC1}"
puts char  # Output: 뿁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49089;</p>  <!-- Display: 뿁 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFC1;</p>  <!-- Display: 뿁 -->

URL Encoding:

// 뿁 URL encoding
https://unicodefinder.com/search.php?query=%EB%BF%81

Encodings

MD5:

dc84ec0e8cbf2010eb2b9485530dd8ca

SHA1:

80597e48edd876550f6728a0be6ba5bdd6ebb455

Base64:

67+B