Unicode Finder

"뼌" U+BF0C(HANGUL SYLLABLE BBYEON)

U+BF0C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYEON

Programming

C
\uBF0C
JavaScript
\uBF0C
Java
\uBF0C
Json
\uBF0C
Python
\uBF0C
Perl
\x{BF0C}
PHP
\x{BF0C}
Ruby
\u{BF0C}
Rust
\u{BF0C}
Go
\uBF0C

Web

CSS
\00BF0C
HtmlDecimal
뼌
HtmlHexadecimal
뼌
Url
%EB%BC%8C

Code

MD5
118f0b890a1a0c8452139e74c7083a81
Sha1
3029726e2be8786b41e100a88c89fd2b620c68c5
Base64
67yM

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF0C';
console.log(char);  // Output: 뼌

Java:

char c = '\uBF0C';
System.out.println(c);  // Output: 뼌

JSON:

{"text": "\uBF0C"}  // Value: 뼌

Python:

char = '\uBF0C'
print(char)  # Output: 뼌

Perl:

my $char = "\x{BF0C}";
print $char;  # Output: 뼌

PHP:

$char = "\x{BF0C}";
echo $char;  // Output: 뼌

Ruby:

char = "\u{BF0C}"
puts char  # Output: 뼌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48908;</p>  <!-- Display: 뼌 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF0C;</p>  <!-- Display: 뼌 -->

URL Encoding:

// 뼌 URL encoding
https://unicodefinder.com/search.php?query=%EB%BC%8C

Encodings

MD5:

118f0b890a1a0c8452139e74c7083a81

SHA1:

3029726e2be8786b41e100a88c89fd2b620c68c5

Base64:

67yM