Unicode Finder

"뗭" U+B5ED(HANGUL SYLLABLE DDYEONG)

U+B5ED
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYEONG

Programming

C
\uB5ED
JavaScript
\uB5ED
Java
\uB5ED
Json
\uB5ED
Python
\uB5ED
Perl
\x{B5ED}
PHP
\x{B5ED}
Ruby
\u{B5ED}
Rust
\u{B5ED}
Go
\uB5ED

Web

CSS
\00B5ED
HtmlDecimal
뗭
HtmlHexadecimal
뗭
Url
%EB%97%AD

Code

MD5
d7d8cdaa0ae91a8e15167779624aff68
Sha1
9853d6bcb67a77bc7c227f0c65f682f48c6bdaf7
Base64
65et

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB5ED';
console.log(char);  // Output: 뗭

Java:

char c = '\uB5ED';
System.out.println(c);  // Output: 뗭

JSON:

{"text": "\uB5ED"}  // Value: 뗭

Python:

char = '\uB5ED'
print(char)  # Output: 뗭

Perl:

my $char = "\x{B5ED}";
print $char;  # Output: 뗭

PHP:

$char = "\x{B5ED}";
echo $char;  // Output: 뗭

Ruby:

char = "\u{B5ED}"
puts char  # Output: 뗭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46573;</p>  <!-- Display: 뗭 -->

HTML Hexadecimal:

<p>HTML hex: &#xB5ED;</p>  <!-- Display: 뗭 -->

URL Encoding:

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

Encodings

MD5:

d7d8cdaa0ae91a8e15167779624aff68

SHA1:

9853d6bcb67a77bc7c227f0c65f682f48c6bdaf7

Base64:

65et