Unicode Finder

"뿈" U+BFC8(HANGUL SYLLABLE BBYOK)

U+BFC8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYOK

Programming

C
\uBFC8
JavaScript
\uBFC8
Java
\uBFC8
Json
\uBFC8
Python
\uBFC8
Perl
\x{BFC8}
PHP
\x{BFC8}
Ruby
\u{BFC8}
Rust
\u{BFC8}
Go
\uBFC8

Web

CSS
\00BFC8
HtmlDecimal
뿈
HtmlHexadecimal
뿈
Url
%EB%BF%88

Code

MD5
8c126758ebec03d98559a2b31466d004
Sha1
ad86fa083640a228b41c8458d61c013074864ff4
Base64
67+I

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFC8';
console.log(char);  // Output: 뿈

Java:

char c = '\uBFC8';
System.out.println(c);  // Output: 뿈

JSON:

{"text": "\uBFC8"}  // Value: 뿈

Python:

char = '\uBFC8'
print(char)  # Output: 뿈

Perl:

my $char = "\x{BFC8}";
print $char;  # Output: 뿈

PHP:

$char = "\x{BFC8}";
echo $char;  // Output: 뿈

Ruby:

char = "\u{BFC8}"
puts char  # Output: 뿈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49096;</p>  <!-- Display: 뿈 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFC8;</p>  <!-- Display: 뿈 -->

URL Encoding:

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

Encodings

MD5:

8c126758ebec03d98559a2b31466d004

SHA1:

ad86fa083640a228b41c8458d61c013074864ff4

Base64:

67+I