Unicode Finder

"뜁" U+B701(HANGUL SYLLABLE DDWIB)

U+B701
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDWIB

Programming

C
\uB701
JavaScript
\uB701
Java
\uB701
Json
\uB701
Python
\uB701
Perl
\x{B701}
PHP
\x{B701}
Ruby
\u{B701}
Rust
\u{B701}
Go
\uB701

Web

CSS
\00B701
HtmlDecimal
뜁
HtmlHexadecimal
뜁
Url
%EB%9C%81

Code

MD5
0a24cfc8b41fb49b6463f793abe33067
Sha1
d8255903c4667e115df9a196a7ce2c26fce0d9e4
Base64
65yB

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB701';
console.log(char);  // Output: 뜁

Java:

char c = '\uB701';
System.out.println(c);  // Output: 뜁

JSON:

{"text": "\uB701"}  // Value: 뜁

Python:

char = '\uB701'
print(char)  # Output: 뜁

Perl:

my $char = "\x{B701}";
print $char;  # Output: 뜁

PHP:

$char = "\x{B701}";
echo $char;  // Output: 뜁

Ruby:

char = "\u{B701}"
puts char  # Output: 뜁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46849;</p>  <!-- Display: 뜁 -->

HTML Hexadecimal:

<p>HTML hex: &#xB701;</p>  <!-- Display: 뜁 -->

URL Encoding:

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

Encodings

MD5:

0a24cfc8b41fb49b6463f793abe33067

SHA1:

d8255903c4667e115df9a196a7ce2c26fce0d9e4

Base64:

65yB