Unicode Finder

"넻" U+B13B(HANGUL SYLLABLE NEC)

U+B13B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NEC

Programming

C
\uB13B
JavaScript
\uB13B
Java
\uB13B
Json
\uB13B
Python
\uB13B
Perl
\x{B13B}
PHP
\x{B13B}
Ruby
\u{B13B}
Rust
\u{B13B}
Go
\uB13B

Web

CSS
\00B13B
HtmlDecimal
넻
HtmlHexadecimal
넻
Url
%EB%84%BB

Code

MD5
33373d0291141d7a1287d167e98a9101
Sha1
c562395ab3b985b8f00a5ba1ed8c32f9444fe784
Base64
64S7

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB13B';
console.log(char);  // Output: 넻

Java:

char c = '\uB13B';
System.out.println(c);  // Output: 넻

JSON:

{"text": "\uB13B"}  // Value: 넻

Python:

char = '\uB13B'
print(char)  # Output: 넻

Perl:

my $char = "\x{B13B}";
print $char;  # Output: 넻

PHP:

$char = "\x{B13B}";
echo $char;  // Output: 넻

Ruby:

char = "\u{B13B}"
puts char  # Output: 넻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45371;</p>  <!-- Display: 넻 -->

HTML Hexadecimal:

<p>HTML hex: &#xB13B;</p>  <!-- Display: 넻 -->

URL Encoding:

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

Encodings

MD5:

33373d0291141d7a1287d167e98a9101

SHA1:

c562395ab3b985b8f00a5ba1ed8c32f9444fe784

Base64:

64S7