Unicode Finder

"낞" U+B09E(HANGUL SYLLABLE NANH)

U+B09E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NANH

Programming

C
\uB09E
JavaScript
\uB09E
Java
\uB09E
Json
\uB09E
Python
\uB09E
Perl
\x{B09E}
PHP
\x{B09E}
Ruby
\u{B09E}
Rust
\u{B09E}
Go
\uB09E

Web

CSS
\00B09E
HtmlDecimal
낞
HtmlHexadecimal
낞
Url
%EB%82%9E

Code

MD5
169a30563e749c524811acdf7b6d845f
Sha1
0693a3d8af52e09474c70eccc2d5fc6d36e9fe5a
Base64
64Ke

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB09E';
console.log(char);  // Output: 낞

Java:

char c = '\uB09E';
System.out.println(c);  // Output: 낞

JSON:

{"text": "\uB09E"}  // Value: 낞

Python:

char = '\uB09E'
print(char)  # Output: 낞

Perl:

my $char = "\x{B09E}";
print $char;  # Output: 낞

PHP:

$char = "\x{B09E}";
echo $char;  // Output: 낞

Ruby:

char = "\u{B09E}"
puts char  # Output: 낞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45214;</p>  <!-- Display: 낞 -->

HTML Hexadecimal:

<p>HTML hex: &#xB09E;</p>  <!-- Display: 낞 -->

URL Encoding:

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

Encodings

MD5:

169a30563e749c524811acdf7b6d845f

SHA1:

0693a3d8af52e09474c70eccc2d5fc6d36e9fe5a

Base64:

64Ke