Unicode Finder

"뿊" U+BFCA(HANGUL SYLLABLE BBYOP)

U+BFCA
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYOP

Programming

C
\uBFCA
JavaScript
\uBFCA
Java
\uBFCA
Json
\uBFCA
Python
\uBFCA
Perl
\x{BFCA}
PHP
\x{BFCA}
Ruby
\u{BFCA}
Rust
\u{BFCA}
Go
\uBFCA

Web

CSS
\00BFCA
HtmlDecimal
뿊
HtmlHexadecimal
뿊
Url
%EB%BF%8A

Code

MD5
bc6ff7e3a45f4c11634b25e7c0f5f95d
Sha1
790d6e01d784e5bc4ee0d04435dd4c616b5caca9
Base64
67+K

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFCA';
console.log(char);  // Output: 뿊

Java:

char c = '\uBFCA';
System.out.println(c);  // Output: 뿊

JSON:

{"text": "\uBFCA"}  // Value: 뿊

Python:

char = '\uBFCA'
print(char)  # Output: 뿊

Perl:

my $char = "\x{BFCA}";
print $char;  # Output: 뿊

PHP:

$char = "\x{BFCA}";
echo $char;  // Output: 뿊

Ruby:

char = "\u{BFCA}"
puts char  # Output: 뿊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49098;</p>  <!-- Display: 뿊 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFCA;</p>  <!-- Display: 뿊 -->

URL Encoding:

// 뿊 URL encoding
https://unicodefinder.com/search.php?query=%EB%BF%8A

Encodings

MD5:

bc6ff7e3a45f4c11634b25e7c0f5f95d

SHA1:

790d6e01d784e5bc4ee0d04435dd4c616b5caca9

Base64:

67+K