Unicode Finder

"냜" U+B0DC(HANGUL SYLLABLE NYALS)

U+B0DC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYALS

Programming

C
\uB0DC
JavaScript
\uB0DC
Java
\uB0DC
Json
\uB0DC
Python
\uB0DC
Perl
\x{B0DC}
PHP
\x{B0DC}
Ruby
\u{B0DC}
Rust
\u{B0DC}
Go
\uB0DC

Web

CSS
\00B0DC
HtmlDecimal
냜
HtmlHexadecimal
냜
Url
%EB%83%9C

Code

MD5
82bf4fe37bc9fabd0f5f2bc863475d22
Sha1
41c6dbacb12984fa124bf461dd2f96f2eb06b7e3
Base64
64Oc

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB0DC';
console.log(char);  // Output: 냜

Java:

char c = '\uB0DC';
System.out.println(c);  // Output: 냜

JSON:

{"text": "\uB0DC"}  // Value: 냜

Python:

char = '\uB0DC'
print(char)  # Output: 냜

Perl:

my $char = "\x{B0DC}";
print $char;  # Output: 냜

PHP:

$char = "\x{B0DC}";
echo $char;  // Output: 냜

Ruby:

char = "\u{B0DC}"
puts char  # Output: 냜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45276;</p>  <!-- Display: 냜 -->

HTML Hexadecimal:

<p>HTML hex: &#xB0DC;</p>  <!-- Display: 냜 -->

URL Encoding:

// 냜 URL encoding
https://unicodefinder.com/search.php?query=%EB%83%9C

Encodings

MD5:

82bf4fe37bc9fabd0f5f2bc863475d22

SHA1:

41c6dbacb12984fa124bf461dd2f96f2eb06b7e3

Base64:

64Oc