Unicode Finder

"냼" U+B0FC(HANGUL SYLLABLE NYAEM)

U+B0FC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYAEM

Programming

C
\uB0FC
JavaScript
\uB0FC
Java
\uB0FC
Json
\uB0FC
Python
\uB0FC
Perl
\x{B0FC}
PHP
\x{B0FC}
Ruby
\u{B0FC}
Rust
\u{B0FC}
Go
\uB0FC

Web

CSS
\00B0FC
HtmlDecimal
냼
HtmlHexadecimal
냼
Url
%EB%83%BC

Code

MD5
c926d3361627c803b8351c5eb6907679
Sha1
854bb215a9d2c2556ff508462b1bbaa2e7ab04bb
Base64
64O8

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB0FC';
console.log(char);  // Output: 냼

Java:

char c = '\uB0FC';
System.out.println(c);  // Output: 냼

JSON:

{"text": "\uB0FC"}  // Value: 냼

Python:

char = '\uB0FC'
print(char)  # Output: 냼

Perl:

my $char = "\x{B0FC}";
print $char;  # Output: 냼

PHP:

$char = "\x{B0FC}";
echo $char;  // Output: 냼

Ruby:

char = "\u{B0FC}"
puts char  # Output: 냼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45308;</p>  <!-- Display: 냼 -->

HTML Hexadecimal:

<p>HTML hex: &#xB0FC;</p>  <!-- Display: 냼 -->

URL Encoding:

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

Encodings

MD5:

c926d3361627c803b8351c5eb6907679

SHA1:

854bb215a9d2c2556ff508462b1bbaa2e7ab04bb

Base64:

64O8