Unicode Finder

"녮" U+B16E(HANGUL SYLLABLE NYEBS)

U+B16E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYEBS

Programming

C
\uB16E
JavaScript
\uB16E
Java
\uB16E
Json
\uB16E
Python
\uB16E
Perl
\x{B16E}
PHP
\x{B16E}
Ruby
\u{B16E}
Rust
\u{B16E}
Go
\uB16E

Web

CSS
\00B16E
HtmlDecimal
녮
HtmlHexadecimal
녮
Url
%EB%85%AE

Code

MD5
38bd5404d1f6d97f99d32fb0f8950444
Sha1
a371bc9e6d0e33208deb267f4e248159a862e0ab
Base64
64Wu

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB16E';
console.log(char);  // Output: 녮

Java:

char c = '\uB16E';
System.out.println(c);  // Output: 녮

JSON:

{"text": "\uB16E"}  // Value: 녮

Python:

char = '\uB16E'
print(char)  # Output: 녮

Perl:

my $char = "\x{B16E}";
print $char;  # Output: 녮

PHP:

$char = "\x{B16E}";
echo $char;  // Output: 녮

Ruby:

char = "\u{B16E}"
puts char  # Output: 녮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45422;</p>  <!-- Display: 녮 -->

HTML Hexadecimal:

<p>HTML hex: &#xB16E;</p>  <!-- Display: 녮 -->

URL Encoding:

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

Encodings

MD5:

38bd5404d1f6d97f99d32fb0f8950444

SHA1:

a371bc9e6d0e33208deb267f4e248159a862e0ab

Base64:

64Wu