Unicode Finder

"뾏" U+BF8F(HANGUL SYLLABLE BBWAEC)

U+BF8F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWAEC

Programming

C
\uBF8F
JavaScript
\uBF8F
Java
\uBF8F
Json
\uBF8F
Python
\uBF8F
Perl
\x{BF8F}
PHP
\x{BF8F}
Ruby
\u{BF8F}
Rust
\u{BF8F}
Go
\uBF8F

Web

CSS
\00BF8F
HtmlDecimal
뾏
HtmlHexadecimal
뾏
Url
%EB%BE%8F

Code

MD5
34ce7f3cb4d093f4054ccead55b593c2
Sha1
38d4dafe1c7342ceb2d8eb23f90a82a6dd35782e
Base64
676P

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF8F';
console.log(char);  // Output: 뾏

Java:

char c = '\uBF8F';
System.out.println(c);  // Output: 뾏

JSON:

{"text": "\uBF8F"}  // Value: 뾏

Python:

char = '\uBF8F'
print(char)  # Output: 뾏

Perl:

my $char = "\x{BF8F}";
print $char;  # Output: 뾏

PHP:

$char = "\x{BF8F}";
echo $char;  // Output: 뾏

Ruby:

char = "\u{BF8F}"
puts char  # Output: 뾏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49039;</p>  <!-- Display: 뾏 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF8F;</p>  <!-- Display: 뾏 -->

URL Encoding:

// 뾏 URL encoding
https://unicodefinder.com/search.php?query=%EB%BE%8F

Encodings

MD5:

34ce7f3cb4d093f4054ccead55b593c2

SHA1:

38d4dafe1c7342ceb2d8eb23f90a82a6dd35782e

Base64:

676P