Unicode Finder

"뛡" U+B6E1(HANGUL SYLLABLE DDWELT)

U+B6E1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDWELT

Programming

C
\uB6E1
JavaScript
\uB6E1
Java
\uB6E1
Json
\uB6E1
Python
\uB6E1
Perl
\x{B6E1}
PHP
\x{B6E1}
Ruby
\u{B6E1}
Rust
\u{B6E1}
Go
\uB6E1

Web

CSS
\00B6E1
HtmlDecimal
뛡
HtmlHexadecimal
뛡
Url
%EB%9B%A1

Code

MD5
2f0fb2dc8d82245992840ecdf52cfbd5
Sha1
711754958b8cbc5a632d10a694ab3d54ed0f4903
Base64
65uh

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB6E1';
console.log(char);  // Output: 뛡

Java:

char c = '\uB6E1';
System.out.println(c);  // Output: 뛡

JSON:

{"text": "\uB6E1"}  // Value: 뛡

Python:

char = '\uB6E1'
print(char)  # Output: 뛡

Perl:

my $char = "\x{B6E1}";
print $char;  # Output: 뛡

PHP:

$char = "\x{B6E1}";
echo $char;  // Output: 뛡

Ruby:

char = "\u{B6E1}"
puts char  # Output: 뛡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46817;</p>  <!-- Display: 뛡 -->

HTML Hexadecimal:

<p>HTML hex: &#xB6E1;</p>  <!-- Display: 뛡 -->

URL Encoding:

// 뛡 URL encoding
https://unicodefinder.com/search.php?query=%EB%9B%A1

Encodings

MD5:

2f0fb2dc8d82245992840ecdf52cfbd5

SHA1:

711754958b8cbc5a632d10a694ab3d54ed0f4903

Base64:

65uh