Unicode Finder

"넾" U+B13E(HANGUL SYLLABLE NEP)

U+B13E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NEP

Programming

C
\uB13E
JavaScript
\uB13E
Java
\uB13E
Json
\uB13E
Python
\uB13E
Perl
\x{B13E}
PHP
\x{B13E}
Ruby
\u{B13E}
Rust
\u{B13E}
Go
\uB13E

Web

CSS
\00B13E
HtmlDecimal
넾
HtmlHexadecimal
넾
Url
%EB%84%BE

Code

MD5
8e3395094adba180d8dcf548ecf9363d
Sha1
4618a0a77bb83c606ce0d3a131c5a38c92a077db
Base64
64S+

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB13E';
console.log(char);  // Output: 넾

Java:

char c = '\uB13E';
System.out.println(c);  // Output: 넾

JSON:

{"text": "\uB13E"}  // Value: 넾

Python:

char = '\uB13E'
print(char)  # Output: 넾

Perl:

my $char = "\x{B13E}";
print $char;  # Output: 넾

PHP:

$char = "\x{B13E}";
echo $char;  // Output: 넾

Ruby:

char = "\u{B13E}"
puts char  # Output: 넾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45374;</p>  <!-- Display: 넾 -->

HTML Hexadecimal:

<p>HTML hex: &#xB13E;</p>  <!-- Display: 넾 -->

URL Encoding:

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

Encodings

MD5:

8e3395094adba180d8dcf548ecf9363d

SHA1:

4618a0a77bb83c606ce0d3a131c5a38c92a077db

Base64:

64S+