Unicode Finder

"넘" U+B118(HANGUL SYLLABLE NEOM)

U+B118
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NEOM

Programming

C
\uB118
JavaScript
\uB118
Java
\uB118
Json
\uB118
Python
\uB118
Perl
\x{B118}
PHP
\x{B118}
Ruby
\u{B118}
Rust
\u{B118}
Go
\uB118

Web

CSS
\00B118
HtmlDecimal
넘
HtmlHexadecimal
넘
Url
%EB%84%98

Code

MD5
604b6c0075dd8ca6a4f0da6b93884fb1
Sha1
f940d612ddb613a842a5200a49f756898fb79c7a
Base64
64SY

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB118';
console.log(char);  // Output: 넘

Java:

char c = '\uB118';
System.out.println(c);  // Output: 넘

JSON:

{"text": "\uB118"}  // Value: 넘

Python:

char = '\uB118'
print(char)  # Output: 넘

Perl:

my $char = "\x{B118}";
print $char;  # Output: 넘

PHP:

$char = "\x{B118}";
echo $char;  // Output: 넘

Ruby:

char = "\u{B118}"
puts char  # Output: 넘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45336;</p>  <!-- Display: 넘 -->

HTML Hexadecimal:

<p>HTML hex: &#xB118;</p>  <!-- Display: 넘 -->

URL Encoding:

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

Encodings

MD5:

604b6c0075dd8ca6a4f0da6b93884fb1

SHA1:

f940d612ddb613a842a5200a49f756898fb79c7a

Base64:

64SY