Unicode Finder

"냩" U+B0E9(HANGUL SYLLABLE NYAT)

U+B0E9
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYAT

Programming

C
\uB0E9
JavaScript
\uB0E9
Java
\uB0E9
Json
\uB0E9
Python
\uB0E9
Perl
\x{B0E9}
PHP
\x{B0E9}
Ruby
\u{B0E9}
Rust
\u{B0E9}
Go
\uB0E9

Web

CSS
\00B0E9
HtmlDecimal
냩
HtmlHexadecimal
냩
Url
%EB%83%A9

Code

MD5
d6de554c522a94fab38191c18d449fee
Sha1
842c330ac8062009143adcc1ff5cb22ce2dd154c
Base64
64Op

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB0E9';
console.log(char);  // Output: 냩

Java:

char c = '\uB0E9';
System.out.println(c);  // Output: 냩

JSON:

{"text": "\uB0E9"}  // Value: 냩

Python:

char = '\uB0E9'
print(char)  # Output: 냩

Perl:

my $char = "\x{B0E9}";
print $char;  # Output: 냩

PHP:

$char = "\x{B0E9}";
echo $char;  // Output: 냩

Ruby:

char = "\u{B0E9}"
puts char  # Output: 냩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45289;</p>  <!-- Display: 냩 -->

HTML Hexadecimal:

<p>HTML hex: &#xB0E9;</p>  <!-- Display: 냩 -->

URL Encoding:

// 냩 URL encoding
https://unicodefinder.com/search.php?query=%EB%83%A9

Encodings

MD5:

d6de554c522a94fab38191c18d449fee

SHA1:

842c330ac8062009143adcc1ff5cb22ce2dd154c

Base64:

64Op