Unicode Finder

"늅" U+B285(HANGUL SYLLABLE NYUB)

U+B285
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NYUB

Programming

C
\uB285
JavaScript
\uB285
Java
\uB285
Json
\uB285
Python
\uB285
Perl
\x{B285}
PHP
\x{B285}
Ruby
\u{B285}
Rust
\u{B285}
Go
\uB285

Web

CSS
\00B285
HtmlDecimal
늅
HtmlHexadecimal
늅
Url
%EB%8A%85

Code

MD5
02b9cc50061d35e8653d5745f3beffe2
Sha1
764eecbdd9953735c6af2ad8f07c51f2e5acef89
Base64
64qF

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB285';
console.log(char);  // Output: 늅

Java:

char c = '\uB285';
System.out.println(c);  // Output: 늅

JSON:

{"text": "\uB285"}  // Value: 늅

Python:

char = '\uB285'
print(char)  # Output: 늅

Perl:

my $char = "\x{B285}";
print $char;  # Output: 늅

PHP:

$char = "\x{B285}";
echo $char;  // Output: 늅

Ruby:

char = "\u{B285}"
puts char  # Output: 늅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45701;</p>  <!-- Display: 늅 -->

HTML Hexadecimal:

<p>HTML hex: &#xB285;</p>  <!-- Display: 늅 -->

URL Encoding:

// 늅 URL encoding
https://unicodefinder.com/search.php?query=%EB%8A%85

Encodings

MD5:

02b9cc50061d35e8653d5745f3beffe2

SHA1:

764eecbdd9953735c6af2ad8f07c51f2e5acef89

Base64:

64qF