Unicode Finder

"묞" U+BB1E(HANGUL SYLLABLE MYONH)

U+BB1E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYONH

Programming

C
\uBB1E
JavaScript
\uBB1E
Java
\uBB1E
Json
\uBB1E
Python
\uBB1E
Perl
\x{BB1E}
PHP
\x{BB1E}
Ruby
\u{BB1E}
Rust
\u{BB1E}
Go
\uBB1E

Web

CSS
\00BB1E
HtmlDecimal
묞
HtmlHexadecimal
묞
Url
%EB%AC%9E

Code

MD5
4905e0921f4e1dc510f98edfc16b4c7b
Sha1
5c840707b131413bc8d83eee45b5b44ca6d91313
Base64
66ye

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBB1E';
console.log(char);  // Output: 묞

Java:

char c = '\uBB1E';
System.out.println(c);  // Output: 묞

JSON:

{"text": "\uBB1E"}  // Value: 묞

Python:

char = '\uBB1E'
print(char)  # Output: 묞

Perl:

my $char = "\x{BB1E}";
print $char;  # Output: 묞

PHP:

$char = "\x{BB1E}";
echo $char;  // Output: 묞

Ruby:

char = "\u{BB1E}"
puts char  # Output: 묞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47902;</p>  <!-- Display: 묞 -->

HTML Hexadecimal:

<p>HTML hex: &#xBB1E;</p>  <!-- Display: 묞 -->

URL Encoding:

// 묞 URL encoding
https://unicodefinder.com/search.php?query=%EB%AC%9E

Encodings

MD5:

4905e0921f4e1dc510f98edfc16b4c7b

SHA1:

5c840707b131413bc8d83eee45b5b44ca6d91313

Base64:

66ye