Unicode Finder

"뫢" U+BAE2(HANGUL SYLLABLE MWAEGG)

U+BAE2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWAEGG

Programming

C
\uBAE2
JavaScript
\uBAE2
Java
\uBAE2
Json
\uBAE2
Python
\uBAE2
Perl
\x{BAE2}
PHP
\x{BAE2}
Ruby
\u{BAE2}
Rust
\u{BAE2}
Go
\uBAE2

Web

CSS
\00BAE2
HtmlDecimal
뫢
HtmlHexadecimal
뫢
Url
%EB%AB%A2

Code

MD5
d937043fe255085c14bdae3a910f8239
Sha1
d1d4ea64462c96abeea261ba8e59d7596a4b7501
Base64
66ui

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBAE2';
console.log(char);  // Output: 뫢

Java:

char c = '\uBAE2';
System.out.println(c);  // Output: 뫢

JSON:

{"text": "\uBAE2"}  // Value: 뫢

Python:

char = '\uBAE2'
print(char)  # Output: 뫢

Perl:

my $char = "\x{BAE2}";
print $char;  # Output: 뫢

PHP:

$char = "\x{BAE2}";
echo $char;  // Output: 뫢

Ruby:

char = "\u{BAE2}"
puts char  # Output: 뫢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47842;</p>  <!-- Display: 뫢 -->

HTML Hexadecimal:

<p>HTML hex: &#xBAE2;</p>  <!-- Display: 뫢 -->

URL Encoding:

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

Encodings

MD5:

d937043fe255085c14bdae3a910f8239

SHA1:

d1d4ea64462c96abeea261ba8e59d7596a4b7501

Base64:

66ui