Unicode Finder

"냰" U+B0F0(HANGUL SYLLABLE NYAEN)

U+B0F0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYAEN

Programming

C
\uB0F0
JavaScript
\uB0F0
Java
\uB0F0
Json
\uB0F0
Python
\uB0F0
Perl
\x{B0F0}
PHP
\x{B0F0}
Ruby
\u{B0F0}
Rust
\u{B0F0}
Go
\uB0F0

Web

CSS
\00B0F0
HtmlDecimal
냰
HtmlHexadecimal
냰
Url
%EB%83%B0

Code

MD5
9683947a492148c1ce14209397c164ed
Sha1
5347c74ff9bc89fec4774bb2e639c4f99f118473
Base64
64Ow

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB0F0';
console.log(char);  // Output: 냰

Java:

char c = '\uB0F0';
System.out.println(c);  // Output: 냰

JSON:

{"text": "\uB0F0"}  // Value: 냰

Python:

char = '\uB0F0'
print(char)  # Output: 냰

Perl:

my $char = "\x{B0F0}";
print $char;  # Output: 냰

PHP:

$char = "\x{B0F0}";
echo $char;  // Output: 냰

Ruby:

char = "\u{B0F0}"
puts char  # Output: 냰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45296;</p>  <!-- Display: 냰 -->

HTML Hexadecimal:

<p>HTML hex: &#xB0F0;</p>  <!-- Display: 냰 -->

URL Encoding:

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

Encodings

MD5:

9683947a492148c1ce14209397c164ed

SHA1:

5347c74ff9bc89fec4774bb2e639c4f99f118473

Base64:

64Ow