Unicode Finder

"뛾" U+B6FE(HANGUL SYLLABLE DDWILP)

U+B6FE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDWILP

Programming

C
\uB6FE
JavaScript
\uB6FE
Java
\uB6FE
Json
\uB6FE
Python
\uB6FE
Perl
\x{B6FE}
PHP
\x{B6FE}
Ruby
\u{B6FE}
Rust
\u{B6FE}
Go
\uB6FE

Web

CSS
\00B6FE
HtmlDecimal
뛾
HtmlHexadecimal
뛾
Url
%EB%9B%BE

Code

MD5
5f097d84e1ae8d5f19240f74fea90fe1
Sha1
7a95bd55517f8579de3c7802e957aff740d8f871
Base64
65u+

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB6FE';
console.log(char);  // Output: 뛾

Java:

char c = '\uB6FE';
System.out.println(c);  // Output: 뛾

JSON:

{"text": "\uB6FE"}  // Value: 뛾

Python:

char = '\uB6FE'
print(char)  # Output: 뛾

Perl:

my $char = "\x{B6FE}";
print $char;  # Output: 뛾

PHP:

$char = "\x{B6FE}";
echo $char;  // Output: 뛾

Ruby:

char = "\u{B6FE}"
puts char  # Output: 뛾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46846;</p>  <!-- Display: 뛾 -->

HTML Hexadecimal:

<p>HTML hex: &#xB6FE;</p>  <!-- Display: 뛾 -->

URL Encoding:

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

Encodings

MD5:

5f097d84e1ae8d5f19240f74fea90fe1

SHA1:

7a95bd55517f8579de3c7802e957aff740d8f871

Base64:

65u+