Unicode Finder

"뗊" U+B5CA(HANGUL SYLLABLE DDELP)

U+B5CA
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDELP

Programming

C
\uB5CA
JavaScript
\uB5CA
Java
\uB5CA
Json
\uB5CA
Python
\uB5CA
Perl
\x{B5CA}
PHP
\x{B5CA}
Ruby
\u{B5CA}
Rust
\u{B5CA}
Go
\uB5CA

Web

CSS
\00B5CA
HtmlDecimal
뗊
HtmlHexadecimal
뗊
Url
%EB%97%8A

Code

MD5
12819bd994ca8556b078d3e33bded794
Sha1
40ccb5d2004ec322e25f00c6c6267398a0ed23d2
Base64
65eK

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB5CA';
console.log(char);  // Output: 뗊

Java:

char c = '\uB5CA';
System.out.println(c);  // Output: 뗊

JSON:

{"text": "\uB5CA"}  // Value: 뗊

Python:

char = '\uB5CA'
print(char)  # Output: 뗊

Perl:

my $char = "\x{B5CA}";
print $char;  # Output: 뗊

PHP:

$char = "\x{B5CA}";
echo $char;  // Output: 뗊

Ruby:

char = "\u{B5CA}"
puts char  # Output: 뗊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46538;</p>  <!-- Display: 뗊 -->

HTML Hexadecimal:

<p>HTML hex: &#xB5CA;</p>  <!-- Display: 뗊 -->

URL Encoding:

// 뗊 URL encoding
https://unicodefinder.com/search.php?query=%EB%97%8A

Encodings

MD5:

12819bd994ca8556b078d3e33bded794

SHA1:

40ccb5d2004ec322e25f00c6c6267398a0ed23d2

Base64:

65eK