Unicode Finder

"넺" U+B13A(HANGUL SYLLABLE NEJ)

U+B13A
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NEJ

Programming

C
\uB13A
JavaScript
\uB13A
Java
\uB13A
Json
\uB13A
Python
\uB13A
Perl
\x{B13A}
PHP
\x{B13A}
Ruby
\u{B13A}
Rust
\u{B13A}
Go
\uB13A

Web

CSS
\00B13A
HtmlDecimal
넺
HtmlHexadecimal
넺
Url
%EB%84%BA

Code

MD5
38dc392933124111ab3e1791cd3eaf5f
Sha1
b37feb24b65265ee969bd607f2dab5b64e23ee3b
Base64
64S6

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB13A';
console.log(char);  // Output: 넺

Java:

char c = '\uB13A';
System.out.println(c);  // Output: 넺

JSON:

{"text": "\uB13A"}  // Value: 넺

Python:

char = '\uB13A'
print(char)  # Output: 넺

Perl:

my $char = "\x{B13A}";
print $char;  # Output: 넺

PHP:

$char = "\x{B13A}";
echo $char;  // Output: 넺

Ruby:

char = "\u{B13A}"
puts char  # Output: 넺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45370;</p>  <!-- Display: 넺 -->

HTML Hexadecimal:

<p>HTML hex: &#xB13A;</p>  <!-- Display: 넺 -->

URL Encoding:

// 넺 URL encoding
https://unicodefinder.com/search.php?query=%EB%84%BA

Encodings

MD5:

38dc392933124111ab3e1791cd3eaf5f

SHA1:

b37feb24b65265ee969bd607f2dab5b64e23ee3b

Base64:

64S6