Unicode Finder

"낫" U+B0AB(HANGUL SYLLABLE NAS)

U+B0AB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NAS

Programming

C
\uB0AB
JavaScript
\uB0AB
Java
\uB0AB
Json
\uB0AB
Python
\uB0AB
Perl
\x{B0AB}
PHP
\x{B0AB}
Ruby
\u{B0AB}
Rust
\u{B0AB}
Go
\uB0AB

Web

CSS
\00B0AB
HtmlDecimal
낫
HtmlHexadecimal
낫
Url
%EB%82%AB

Code

MD5
4151391dba86f0fa2928d73e4871fbfb
Sha1
8bbed83716c1ecf5326ce635315b36e2071ec70e
Base64
64Kr

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB0AB';
console.log(char);  // Output: 낫

Java:

char c = '\uB0AB';
System.out.println(c);  // Output: 낫

JSON:

{"text": "\uB0AB"}  // Value: 낫

Python:

char = '\uB0AB'
print(char)  # Output: 낫

Perl:

my $char = "\x{B0AB}";
print $char;  # Output: 낫

PHP:

$char = "\x{B0AB}";
echo $char;  // Output: 낫

Ruby:

char = "\u{B0AB}"
puts char  # Output: 낫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45227;</p>  <!-- Display: 낫 -->

HTML Hexadecimal:

<p>HTML hex: &#xB0AB;</p>  <!-- Display: 낫 -->

URL Encoding:

// 낫 URL encoding
https://unicodefinder.com/search.php?query=%EB%82%AB

Encodings

MD5:

4151391dba86f0fa2928d73e4871fbfb

SHA1:

8bbed83716c1ecf5326ce635315b36e2071ec70e

Base64:

64Kr