Unicode Finder

"뽛" U+BF5B(HANGUL SYLLABLE BBOH)

U+BF5B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBOH

Programming

C
\uBF5B
JavaScript
\uBF5B
Java
\uBF5B
Json
\uBF5B
Python
\uBF5B
Perl
\x{BF5B}
PHP
\x{BF5B}
Ruby
\u{BF5B}
Rust
\u{BF5B}
Go
\uBF5B

Web

CSS
\00BF5B
HtmlDecimal
뽛
HtmlHexadecimal
뽛
Url
%EB%BD%9B

Code

MD5
bd250889b3f8c75dae692d6a0a13964c
Sha1
1397222ce53a3ac3a973ec01e4ec8f1697a77b8d
Base64
672b

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF5B';
console.log(char);  // Output: 뽛

Java:

char c = '\uBF5B';
System.out.println(c);  // Output: 뽛

JSON:

{"text": "\uBF5B"}  // Value: 뽛

Python:

char = '\uBF5B'
print(char)  # Output: 뽛

Perl:

my $char = "\x{BF5B}";
print $char;  # Output: 뽛

PHP:

$char = "\x{BF5B}";
echo $char;  // Output: 뽛

Ruby:

char = "\u{BF5B}"
puts char  # Output: 뽛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48987;</p>  <!-- Display: 뽛 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF5B;</p>  <!-- Display: 뽛 -->

URL Encoding:

// 뽛 URL encoding
https://unicodefinder.com/search.php?query=%EB%BD%9B

Encodings

MD5:

bd250889b3f8c75dae692d6a0a13964c

SHA1:

1397222ce53a3ac3a973ec01e4ec8f1697a77b8d

Base64:

672b