Unicode Finder

"묿" U+BB3F(HANGUL SYLLABLE MULB)

묿
U+BB3F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MULB

Programming

C
\uBB3F
JavaScript
\uBB3F
Java
\uBB3F
Json
\uBB3F
Python
\uBB3F
Perl
\x{BB3F}
PHP
\x{BB3F}
Ruby
\u{BB3F}
Rust
\u{BB3F}
Go
\uBB3F

Web

CSS
\00BB3F
HtmlDecimal
묿
HtmlHexadecimal
묿
Url
%EB%AC%BF

Code

MD5
ecca929b0f298dacd86e67b5fd0e4344
Sha1
a59ad497620a51f51f0737fe7ecb228fe2dc3690
Base64
66y/

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBB3F';
console.log(char);  // Output: 묿

Java:

char c = '\uBB3F';
System.out.println(c);  // Output: 묿

JSON:

{"text": "\uBB3F"}  // Value: 묿

Python:

char = '\uBB3F'
print(char)  # Output: 묿

Perl:

my $char = "\x{BB3F}";
print $char;  # Output: 묿

PHP:

$char = "\x{BB3F}";
echo $char;  // Output: 묿

Ruby:

char = "\u{BB3F}"
puts char  # Output: 묿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47935;</p>  <!-- Display: 묿 -->

HTML Hexadecimal:

<p>HTML hex: &#xBB3F;</p>  <!-- Display: 묿 -->

URL Encoding:

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

Encodings

MD5:

ecca929b0f298dacd86e67b5fd0e4344

SHA1:

a59ad497620a51f51f0737fe7ecb228fe2dc3690

Base64:

66y/