Unicode Finder

"냭" U+B0ED(HANGUL SYLLABLE NYAEG)

U+B0ED
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYAEG

Programming

C
\uB0ED
JavaScript
\uB0ED
Java
\uB0ED
Json
\uB0ED
Python
\uB0ED
Perl
\x{B0ED}
PHP
\x{B0ED}
Ruby
\u{B0ED}
Rust
\u{B0ED}
Go
\uB0ED

Web

CSS
\00B0ED
HtmlDecimal
냭
HtmlHexadecimal
냭
Url
%EB%83%AD

Code

MD5
cf6b3ec2ab7c0d5a9476fcde2d8a1d72
Sha1
6b30f6fc6026d8d11c8293412e1e2b65e3b50ba5
Base64
64Ot

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB0ED';
console.log(char);  // Output: 냭

Java:

char c = '\uB0ED';
System.out.println(c);  // Output: 냭

JSON:

{"text": "\uB0ED"}  // Value: 냭

Python:

char = '\uB0ED'
print(char)  # Output: 냭

Perl:

my $char = "\x{B0ED}";
print $char;  # Output: 냭

PHP:

$char = "\x{B0ED}";
echo $char;  // Output: 냭

Ruby:

char = "\u{B0ED}"
puts char  # Output: 냭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45293;</p>  <!-- Display: 냭 -->

HTML Hexadecimal:

<p>HTML hex: &#xB0ED;</p>  <!-- Display: 냭 -->

URL Encoding:

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

Encodings

MD5:

cf6b3ec2ab7c0d5a9476fcde2d8a1d72

SHA1:

6b30f6fc6026d8d11c8293412e1e2b65e3b50ba5

Base64:

64Ot