Unicode Finder

"냚" U+B0DA(HANGUL SYLLABLE NYALM)

U+B0DA
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYALM

Programming

C
\uB0DA
JavaScript
\uB0DA
Java
\uB0DA
Json
\uB0DA
Python
\uB0DA
Perl
\x{B0DA}
PHP
\x{B0DA}
Ruby
\u{B0DA}
Rust
\u{B0DA}
Go
\uB0DA

Web

CSS
\00B0DA
HtmlDecimal
냚
HtmlHexadecimal
냚
Url
%EB%83%9A

Code

MD5
53917fa4b7e6b8d9d3cd1fef46bf2cf4
Sha1
7c1d71db5584ec35aac3fe1776012c79ef5f97de
Base64
64Oa

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB0DA';
console.log(char);  // Output: 냚

Java:

char c = '\uB0DA';
System.out.println(c);  // Output: 냚

JSON:

{"text": "\uB0DA"}  // Value: 냚

Python:

char = '\uB0DA'
print(char)  # Output: 냚

Perl:

my $char = "\x{B0DA}";
print $char;  # Output: 냚

PHP:

$char = "\x{B0DA}";
echo $char;  // Output: 냚

Ruby:

char = "\u{B0DA}"
puts char  # Output: 냚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45274;</p>  <!-- Display: 냚 -->

HTML Hexadecimal:

<p>HTML hex: &#xB0DA;</p>  <!-- Display: 냚 -->

URL Encoding:

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

Encodings

MD5:

53917fa4b7e6b8d9d3cd1fef46bf2cf4

SHA1:

7c1d71db5584ec35aac3fe1776012c79ef5f97de

Base64:

64Oa