Unicode Finder

"눤" U+B224(HANGUL SYLLABLE NWEON)

U+B224
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NWEON

Programming

C
\uB224
JavaScript
\uB224
Java
\uB224
Json
\uB224
Python
\uB224
Perl
\x{B224}
PHP
\x{B224}
Ruby
\u{B224}
Rust
\u{B224}
Go
\uB224

Web

CSS
\00B224
HtmlDecimal
눤
HtmlHexadecimal
눤
Url
%EB%88%A4

Code

MD5
0896e9165ba1502637d5ed8ab31de786
Sha1
651531352c3b07ca3b829c53968e37cbf7913df2
Base64
64ik

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB224';
console.log(char);  // Output: 눤

Java:

char c = '\uB224';
System.out.println(c);  // Output: 눤

JSON:

{"text": "\uB224"}  // Value: 눤

Python:

char = '\uB224'
print(char)  # Output: 눤

Perl:

my $char = "\x{B224}";
print $char;  # Output: 눤

PHP:

$char = "\x{B224}";
echo $char;  // Output: 눤

Ruby:

char = "\u{B224}"
puts char  # Output: 눤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45604;</p>  <!-- Display: 눤 -->

HTML Hexadecimal:

<p>HTML hex: &#xB224;</p>  <!-- Display: 눤 -->

URL Encoding:

// 눤 URL encoding
https://unicodefinder.com/search.php?query=%EB%88%A4

Encodings

MD5:

0896e9165ba1502637d5ed8ab31de786

SHA1:

651531352c3b07ca3b829c53968e37cbf7913df2

Base64:

64ik