Unicode Finder

"뾜" U+BF9C(HANGUL SYLLABLE BBOEL)

U+BF9C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBOEL

Programming

C
\uBF9C
JavaScript
\uBF9C
Java
\uBF9C
Json
\uBF9C
Python
\uBF9C
Perl
\x{BF9C}
PHP
\x{BF9C}
Ruby
\u{BF9C}
Rust
\u{BF9C}
Go
\uBF9C

Web

CSS
\00BF9C
HtmlDecimal
뾜
HtmlHexadecimal
뾜
Url
%EB%BE%9C

Code

MD5
ef4d1cb0de5153d26f3bf09da2245095
Sha1
774c2fe35d06e8ed689184247e683db9d22871ec
Base64
676c

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF9C';
console.log(char);  // Output: 뾜

Java:

char c = '\uBF9C';
System.out.println(c);  // Output: 뾜

JSON:

{"text": "\uBF9C"}  // Value: 뾜

Python:

char = '\uBF9C'
print(char)  # Output: 뾜

Perl:

my $char = "\x{BF9C}";
print $char;  # Output: 뾜

PHP:

$char = "\x{BF9C}";
echo $char;  // Output: 뾜

Ruby:

char = "\u{BF9C}"
puts char  # Output: 뾜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49052;</p>  <!-- Display: 뾜 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF9C;</p>  <!-- Display: 뾜 -->

URL Encoding:

// 뾜 URL encoding
https://unicodefinder.com/search.php?query=%EB%BE%9C

Encodings

MD5:

ef4d1cb0de5153d26f3bf09da2245095

SHA1:

774c2fe35d06e8ed689184247e683db9d22871ec

Base64:

676c