Unicode Finder

"뇚" U+B1DA(HANGUL SYLLABLE NOELP)

U+B1DA
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NOELP

Programming

C
\uB1DA
JavaScript
\uB1DA
Java
\uB1DA
Json
\uB1DA
Python
\uB1DA
Perl
\x{B1DA}
PHP
\x{B1DA}
Ruby
\u{B1DA}
Rust
\u{B1DA}
Go
\uB1DA

Web

CSS
\00B1DA
HtmlDecimal
뇚
HtmlHexadecimal
뇚
Url
%EB%87%9A

Code

MD5
e0d526b17d1d1b9be1163ed4b9b733bb
Sha1
c4b4766c17174123ec0978220dd84db34855cb15
Base64
64ea

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB1DA';
console.log(char);  // Output: 뇚

Java:

char c = '\uB1DA';
System.out.println(c);  // Output: 뇚

JSON:

{"text": "\uB1DA"}  // Value: 뇚

Python:

char = '\uB1DA'
print(char)  # Output: 뇚

Perl:

my $char = "\x{B1DA}";
print $char;  # Output: 뇚

PHP:

$char = "\x{B1DA}";
echo $char;  // Output: 뇚

Ruby:

char = "\u{B1DA}"
puts char  # Output: 뇚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45530;</p>  <!-- Display: 뇚 -->

HTML Hexadecimal:

<p>HTML hex: &#xB1DA;</p>  <!-- Display: 뇚 -->

URL Encoding:

// 뇚 URL encoding
https://unicodefinder.com/search.php?query=%EB%87%9A

Encodings

MD5:

e0d526b17d1d1b9be1163ed4b9b733bb

SHA1:

c4b4766c17174123ec0978220dd84db34855cb15

Base64:

64ea