Unicode Finder

"넪" U+B12A(HANGUL SYLLABLE NENH)

U+B12A
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NENH

Programming

C
\uB12A
JavaScript
\uB12A
Java
\uB12A
Json
\uB12A
Python
\uB12A
Perl
\x{B12A}
PHP
\x{B12A}
Ruby
\u{B12A}
Rust
\u{B12A}
Go
\uB12A

Web

CSS
\00B12A
HtmlDecimal
넪
HtmlHexadecimal
넪
Url
%EB%84%AA

Code

MD5
d9c9f5cd27719fbd4428cea94028cf4b
Sha1
2d825e44125781efb9c72a44adf5233b482d0d0e
Base64
64Sq

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB12A';
console.log(char);  // Output: 넪

Java:

char c = '\uB12A';
System.out.println(c);  // Output: 넪

JSON:

{"text": "\uB12A"}  // Value: 넪

Python:

char = '\uB12A'
print(char)  # Output: 넪

Perl:

my $char = "\x{B12A}";
print $char;  # Output: 넪

PHP:

$char = "\x{B12A}";
echo $char;  // Output: 넪

Ruby:

char = "\u{B12A}"
puts char  # Output: 넪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45354;</p>  <!-- Display: 넪 -->

HTML Hexadecimal:

<p>HTML hex: &#xB12A;</p>  <!-- Display: 넪 -->

URL Encoding:

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

Encodings

MD5:

d9c9f5cd27719fbd4428cea94028cf4b

SHA1:

2d825e44125781efb9c72a44adf5233b482d0d0e

Base64:

64Sq