Unicode Finder

"뗬" U+B5EC(HANGUL SYLLABLE DDYEOSS)

U+B5EC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYEOSS

Programming

C
\uB5EC
JavaScript
\uB5EC
Java
\uB5EC
Json
\uB5EC
Python
\uB5EC
Perl
\x{B5EC}
PHP
\x{B5EC}
Ruby
\u{B5EC}
Rust
\u{B5EC}
Go
\uB5EC

Web

CSS
\00B5EC
HtmlDecimal
뗬
HtmlHexadecimal
뗬
Url
%EB%97%AC

Code

MD5
b92afe0d21da6f6eef405edc1126b13d
Sha1
9c5957fe9de5d8c3b097d9e061b163d2aa7fad4e
Base64
65es

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB5EC';
console.log(char);  // Output: 뗬

Java:

char c = '\uB5EC';
System.out.println(c);  // Output: 뗬

JSON:

{"text": "\uB5EC"}  // Value: 뗬

Python:

char = '\uB5EC'
print(char)  # Output: 뗬

Perl:

my $char = "\x{B5EC}";
print $char;  # Output: 뗬

PHP:

$char = "\x{B5EC}";
echo $char;  // Output: 뗬

Ruby:

char = "\u{B5EC}"
puts char  # Output: 뗬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46572;</p>  <!-- Display: 뗬 -->

HTML Hexadecimal:

<p>HTML hex: &#xB5EC;</p>  <!-- Display: 뗬 -->

URL Encoding:

// 뗬 URL encoding
https://unicodefinder.com/search.php?query=%EB%97%AC

Encodings

MD5:

b92afe0d21da6f6eef405edc1126b13d

SHA1:

9c5957fe9de5d8c3b097d9e061b163d2aa7fad4e

Base64:

65es