Unicode Finder

"뿀" U+BFC0(HANGUL SYLLABLE BBYOM)

U+BFC0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYOM

Programming

C
\uBFC0
JavaScript
\uBFC0
Java
\uBFC0
Json
\uBFC0
Python
\uBFC0
Perl
\x{BFC0}
PHP
\x{BFC0}
Ruby
\u{BFC0}
Rust
\u{BFC0}
Go
\uBFC0

Web

CSS
\00BFC0
HtmlDecimal
뿀
HtmlHexadecimal
뿀
Url
%EB%BF%80

Code

MD5
3527df3252cc90c71deabd372ef87bb7
Sha1
3d728cfe376280dd2a52aa400b1ca83d2f09d3c2
Base64
67+A

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFC0';
console.log(char);  // Output: 뿀

Java:

char c = '\uBFC0';
System.out.println(c);  // Output: 뿀

JSON:

{"text": "\uBFC0"}  // Value: 뿀

Python:

char = '\uBFC0'
print(char)  # Output: 뿀

Perl:

my $char = "\x{BFC0}";
print $char;  # Output: 뿀

PHP:

$char = "\x{BFC0}";
echo $char;  // Output: 뿀

Ruby:

char = "\u{BFC0}"
puts char  # Output: 뿀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49088;</p>  <!-- Display: 뿀 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFC0;</p>  <!-- Display: 뿀 -->

URL Encoding:

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

Encodings

MD5:

3527df3252cc90c71deabd372ef87bb7

SHA1:

3d728cfe376280dd2a52aa400b1ca83d2f09d3c2

Base64:

67+A