Unicode Finder

"녢" U+B162(HANGUL SYLLABLE NYENH)

U+B162
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYENH

Programming

C
\uB162
JavaScript
\uB162
Java
\uB162
Json
\uB162
Python
\uB162
Perl
\x{B162}
PHP
\x{B162}
Ruby
\u{B162}
Rust
\u{B162}
Go
\uB162

Web

CSS
\00B162
HtmlDecimal
녢
HtmlHexadecimal
녢
Url
%EB%85%A2

Code

MD5
a609d92e4766e035b24ee0967fae2e04
Sha1
25937fff46f0fe1821ed1859579665c47855455a
Base64
64Wi

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB162';
console.log(char);  // Output: 녢

Java:

char c = '\uB162';
System.out.println(c);  // Output: 녢

JSON:

{"text": "\uB162"}  // Value: 녢

Python:

char = '\uB162'
print(char)  # Output: 녢

Perl:

my $char = "\x{B162}";
print $char;  # Output: 녢

PHP:

$char = "\x{B162}";
echo $char;  // Output: 녢

Ruby:

char = "\u{B162}"
puts char  # Output: 녢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45410;</p>  <!-- Display: 녢 -->

HTML Hexadecimal:

<p>HTML hex: &#xB162;</p>  <!-- Display: 녢 -->

URL Encoding:

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

Encodings

MD5:

a609d92e4766e035b24ee0967fae2e04

SHA1:

25937fff46f0fe1821ed1859579665c47855455a

Base64:

64Wi