Unicode Finder

"냻" U+B0FB(HANGUL SYLLABLE NYAELH)

U+B0FB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYAELH

Programming

C
\uB0FB
JavaScript
\uB0FB
Java
\uB0FB
Json
\uB0FB
Python
\uB0FB
Perl
\x{B0FB}
PHP
\x{B0FB}
Ruby
\u{B0FB}
Rust
\u{B0FB}
Go
\uB0FB

Web

CSS
\00B0FB
HtmlDecimal
냻
HtmlHexadecimal
냻
Url
%EB%83%BB

Code

MD5
6858f21108e6d2a40cb9c8a34bf636cc
Sha1
b5e76e5aec289ce78e8f89ccd5cf54034a02a637
Base64
64O7

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB0FB';
console.log(char);  // Output: 냻

Java:

char c = '\uB0FB';
System.out.println(c);  // Output: 냻

JSON:

{"text": "\uB0FB"}  // Value: 냻

Python:

char = '\uB0FB'
print(char)  # Output: 냻

Perl:

my $char = "\x{B0FB}";
print $char;  # Output: 냻

PHP:

$char = "\x{B0FB}";
echo $char;  // Output: 냻

Ruby:

char = "\u{B0FB}"
puts char  # Output: 냻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45307;</p>  <!-- Display: 냻 -->

HTML Hexadecimal:

<p>HTML hex: &#xB0FB;</p>  <!-- Display: 냻 -->

URL Encoding:

// 냻 URL encoding
https://unicodefinder.com/search.php?query=%EB%83%BB

Encodings

MD5:

6858f21108e6d2a40cb9c8a34bf636cc

SHA1:

b5e76e5aec289ce78e8f89ccd5cf54034a02a637

Base64:

64O7