Unicode Finder

"묢" U+BB22(HANGUL SYLLABLE MYOLM)

U+BB22
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYOLM

Programming

C
\uBB22
JavaScript
\uBB22
Java
\uBB22
Json
\uBB22
Python
\uBB22
Perl
\x{BB22}
PHP
\x{BB22}
Ruby
\u{BB22}
Rust
\u{BB22}
Go
\uBB22

Web

CSS
\00BB22
HtmlDecimal
묢
HtmlHexadecimal
묢
Url
%EB%AC%A2

Code

MD5
b6baa7c9b80d00c165ebf6826e828df9
Sha1
9b087e59fcd7ac6fa7786d53c545e30e06dce234
Base64
66yi

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBB22';
console.log(char);  // Output: 묢

Java:

char c = '\uBB22';
System.out.println(c);  // Output: 묢

JSON:

{"text": "\uBB22"}  // Value: 묢

Python:

char = '\uBB22'
print(char)  # Output: 묢

Perl:

my $char = "\x{BB22}";
print $char;  # Output: 묢

PHP:

$char = "\x{BB22}";
echo $char;  // Output: 묢

Ruby:

char = "\u{BB22}"
puts char  # Output: 묢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47906;</p>  <!-- Display: 묢 -->

HTML Hexadecimal:

<p>HTML hex: &#xBB22;</p>  <!-- Display: 묢 -->

URL Encoding:

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

Encodings

MD5:

b6baa7c9b80d00c165ebf6826e828df9

SHA1:

9b087e59fcd7ac6fa7786d53c545e30e06dce234

Base64:

66yi