Unicode Finder

"먿" U+BA3F(HANGUL SYLLABLE MEOD)

먿
U+BA3F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MEOD

Programming

C
\uBA3F
JavaScript
\uBA3F
Java
\uBA3F
Json
\uBA3F
Python
\uBA3F
Perl
\x{BA3F}
PHP
\x{BA3F}
Ruby
\u{BA3F}
Rust
\u{BA3F}
Go
\uBA3F

Web

CSS
\00BA3F
HtmlDecimal
먿
HtmlHexadecimal
먿
Url
%EB%A8%BF

Code

MD5
41f927ab9df4402fb26250d41d15ee2e
Sha1
9f998a52e1d3230f45030b35b5476ee5a969bc58
Base64
66i/

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBA3F';
console.log(char);  // Output: 먿

Java:

char c = '\uBA3F';
System.out.println(c);  // Output: 먿

JSON:

{"text": "\uBA3F"}  // Value: 먿

Python:

char = '\uBA3F'
print(char)  # Output: 먿

Perl:

my $char = "\x{BA3F}";
print $char;  # Output: 먿

PHP:

$char = "\x{BA3F}";
echo $char;  // Output: 먿

Ruby:

char = "\u{BA3F}"
puts char  # Output: 먿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47679;</p>  <!-- Display: 먿 -->

HTML Hexadecimal:

<p>HTML hex: &#xBA3F;</p>  <!-- Display: 먿 -->

URL Encoding:

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

Encodings

MD5:

41f927ab9df4402fb26250d41d15ee2e

SHA1:

9f998a52e1d3230f45030b35b5476ee5a969bc58

Base64:

66i/