Unicode Finder

"넞" U+B11E(HANGUL SYLLABLE NEOJ)

U+B11E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NEOJ

Programming

C
\uB11E
JavaScript
\uB11E
Java
\uB11E
Json
\uB11E
Python
\uB11E
Perl
\x{B11E}
PHP
\x{B11E}
Ruby
\u{B11E}
Rust
\u{B11E}
Go
\uB11E

Web

CSS
\00B11E
HtmlDecimal
넞
HtmlHexadecimal
넞
Url
%EB%84%9E

Code

MD5
c4c9709fd83a0462189470453ef43e5e
Sha1
7afa01e8ba2bb8ef895cf11f85181e3b33405e15
Base64
64Se

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB11E';
console.log(char);  // Output: 넞

Java:

char c = '\uB11E';
System.out.println(c);  // Output: 넞

JSON:

{"text": "\uB11E"}  // Value: 넞

Python:

char = '\uB11E'
print(char)  # Output: 넞

Perl:

my $char = "\x{B11E}";
print $char;  # Output: 넞

PHP:

$char = "\x{B11E}";
echo $char;  // Output: 넞

Ruby:

char = "\u{B11E}"
puts char  # Output: 넞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45342;</p>  <!-- Display: 넞 -->

HTML Hexadecimal:

<p>HTML hex: &#xB11E;</p>  <!-- Display: 넞 -->

URL Encoding:

// 넞 URL encoding
https://unicodefinder.com/search.php?query=%EB%84%9E

Encodings

MD5:

c4c9709fd83a0462189470453ef43e5e

SHA1:

7afa01e8ba2bb8ef895cf11f85181e3b33405e15

Base64:

64Se