Unicode Finder

"뾇" U+BF87(HANGUL SYLLABLE BBWAELH)

U+BF87
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWAELH

Programming

C
\uBF87
JavaScript
\uBF87
Java
\uBF87
Json
\uBF87
Python
\uBF87
Perl
\x{BF87}
PHP
\x{BF87}
Ruby
\u{BF87}
Rust
\u{BF87}
Go
\uBF87

Web

CSS
\00BF87
HtmlDecimal
뾇
HtmlHexadecimal
뾇
Url
%EB%BE%87

Code

MD5
2ceeaad31bb95eec8c7eeaed3e04fcbd
Sha1
c522039e3ec75f3d5deeda9118f5bb3fcedbbfdf
Base64
676H

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF87';
console.log(char);  // Output: 뾇

Java:

char c = '\uBF87';
System.out.println(c);  // Output: 뾇

JSON:

{"text": "\uBF87"}  // Value: 뾇

Python:

char = '\uBF87'
print(char)  # Output: 뾇

Perl:

my $char = "\x{BF87}";
print $char;  # Output: 뾇

PHP:

$char = "\x{BF87}";
echo $char;  // Output: 뾇

Ruby:

char = "\u{BF87}"
puts char  # Output: 뾇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49031;</p>  <!-- Display: 뾇 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF87;</p>  <!-- Display: 뾇 -->

URL Encoding:

// 뾇 URL encoding
https://unicodefinder.com/search.php?query=%EB%BE%87

Encodings

MD5:

2ceeaad31bb95eec8c7eeaed3e04fcbd

SHA1:

c522039e3ec75f3d5deeda9118f5bb3fcedbbfdf

Base64:

676H