Unicode Finder

"뼋" U+BF0B(HANGUL SYLLABLE BBYEOGS)

U+BF0B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYEOGS

Programming

C
\uBF0B
JavaScript
\uBF0B
Java
\uBF0B
Json
\uBF0B
Python
\uBF0B
Perl
\x{BF0B}
PHP
\x{BF0B}
Ruby
\u{BF0B}
Rust
\u{BF0B}
Go
\uBF0B

Web

CSS
\00BF0B
HtmlDecimal
뼋
HtmlHexadecimal
뼋
Url
%EB%BC%8B

Code

MD5
bbfac1f7a7a3229e35402f7803f5a8d1
Sha1
da3307528f01c5406feabdf39b1c784d8d1483cd
Base64
67yL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF0B';
console.log(char);  // Output: 뼋

Java:

char c = '\uBF0B';
System.out.println(c);  // Output: 뼋

JSON:

{"text": "\uBF0B"}  // Value: 뼋

Python:

char = '\uBF0B'
print(char)  # Output: 뼋

Perl:

my $char = "\x{BF0B}";
print $char;  # Output: 뼋

PHP:

$char = "\x{BF0B}";
echo $char;  // Output: 뼋

Ruby:

char = "\u{BF0B}"
puts char  # Output: 뼋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48907;</p>  <!-- Display: 뼋 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF0B;</p>  <!-- Display: 뼋 -->

URL Encoding:

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

Encodings

MD5:

bbfac1f7a7a3229e35402f7803f5a8d1

SHA1:

da3307528f01c5406feabdf39b1c784d8d1483cd

Base64:

67yL