Unicode Finder

"넏" U+B10F(HANGUL SYLLABLE NEOD)

U+B10F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NEOD

Programming

C
\uB10F
JavaScript
\uB10F
Java
\uB10F
Json
\uB10F
Python
\uB10F
Perl
\x{B10F}
PHP
\x{B10F}
Ruby
\u{B10F}
Rust
\u{B10F}
Go
\uB10F

Web

CSS
\00B10F
HtmlDecimal
넏
HtmlHexadecimal
넏
Url
%EB%84%8F

Code

MD5
158993ae8760f97f6056b3eb2558255d
Sha1
eada33031008b9a9e089eb78136660e095df6df3
Base64
64SP

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB10F';
console.log(char);  // Output: 넏

Java:

char c = '\uB10F';
System.out.println(c);  // Output: 넏

JSON:

{"text": "\uB10F"}  // Value: 넏

Python:

char = '\uB10F'
print(char)  # Output: 넏

Perl:

my $char = "\x{B10F}";
print $char;  # Output: 넏

PHP:

$char = "\x{B10F}";
echo $char;  // Output: 넏

Ruby:

char = "\u{B10F}"
puts char  # Output: 넏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45327;</p>  <!-- Display: 넏 -->

HTML Hexadecimal:

<p>HTML hex: &#xB10F;</p>  <!-- Display: 넏 -->

URL Encoding:

// 넏 URL encoding
https://unicodefinder.com/search.php?query=%EB%84%8F

Encodings

MD5:

158993ae8760f97f6056b3eb2558255d

SHA1:

eada33031008b9a9e089eb78136660e095df6df3

Base64:

64SP