Unicode Finder

"녘" U+B158(HANGUL SYLLABLE NYEOK)

U+B158
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYEOK

Programming

C
\uB158
JavaScript
\uB158
Java
\uB158
Json
\uB158
Python
\uB158
Perl
\x{B158}
PHP
\x{B158}
Ruby
\u{B158}
Rust
\u{B158}
Go
\uB158

Web

CSS
\00B158
HtmlDecimal
녘
HtmlHexadecimal
녘
Url
%EB%85%98

Code

MD5
8510514c70c02734836abc66a718eb0f
Sha1
3dbdbb04b05dcf53c53e60f02d636ce54d65d020
Base64
64WY

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB158';
console.log(char);  // Output: 녘

Java:

char c = '\uB158';
System.out.println(c);  // Output: 녘

JSON:

{"text": "\uB158"}  // Value: 녘

Python:

char = '\uB158'
print(char)  # Output: 녘

Perl:

my $char = "\x{B158}";
print $char;  # Output: 녘

PHP:

$char = "\x{B158}";
echo $char;  // Output: 녘

Ruby:

char = "\u{B158}"
puts char  # Output: 녘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45400;</p>  <!-- Display: 녘 -->

HTML Hexadecimal:

<p>HTML hex: &#xB158;</p>  <!-- Display: 녘 -->

URL Encoding:

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

Encodings

MD5:

8510514c70c02734836abc66a718eb0f

SHA1:

3dbdbb04b05dcf53c53e60f02d636ce54d65d020

Base64:

64WY