Unicode Finder

"묉" U+BB09(HANGUL SYLLABLE MOELT)

U+BB09
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MOELT

Programming

C
\uBB09
JavaScript
\uBB09
Java
\uBB09
Json
\uBB09
Python
\uBB09
Perl
\x{BB09}
PHP
\x{BB09}
Ruby
\u{BB09}
Rust
\u{BB09}
Go
\uBB09

Web

CSS
\00BB09
HtmlDecimal
묉
HtmlHexadecimal
묉
Url
%EB%AC%89

Code

MD5
6214f11d247de509bd240f53d3759168
Sha1
73834380920342517e046b771ca79f651e0b6c8d
Base64
66yJ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBB09';
console.log(char);  // Output: 묉

Java:

char c = '\uBB09';
System.out.println(c);  // Output: 묉

JSON:

{"text": "\uBB09"}  // Value: 묉

Python:

char = '\uBB09'
print(char)  # Output: 묉

Perl:

my $char = "\x{BB09}";
print $char;  # Output: 묉

PHP:

$char = "\x{BB09}";
echo $char;  // Output: 묉

Ruby:

char = "\u{BB09}"
puts char  # Output: 묉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47881;</p>  <!-- Display: 묉 -->

HTML Hexadecimal:

<p>HTML hex: &#xBB09;</p>  <!-- Display: 묉 -->

URL Encoding:

// 묉 URL encoding
https://unicodefinder.com/search.php?query=%EB%AC%89

Encodings

MD5:

6214f11d247de509bd240f53d3759168

SHA1:

73834380920342517e046b771ca79f651e0b6c8d

Base64:

66yJ