Unicode Finder

"됲" U+B432(HANGUL SYLLABLE DOEP)

U+B432
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DOEP

Programming

C
\uB432
JavaScript
\uB432
Java
\uB432
Json
\uB432
Python
\uB432
Perl
\x{B432}
PHP
\x{B432}
Ruby
\u{B432}
Rust
\u{B432}
Go
\uB432

Web

CSS
\00B432
HtmlDecimal
됲
HtmlHexadecimal
됲
Url
%EB%90%B2

Code

MD5
dc24833b3de12a5bb8cb60fade8c5f1b
Sha1
4cf56f095f81a6484f0c1e0eb308b0f503e43deb
Base64
65Cy

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB432';
console.log(char);  // Output: 됲

Java:

char c = '\uB432';
System.out.println(c);  // Output: 됲

JSON:

{"text": "\uB432"}  // Value: 됲

Python:

char = '\uB432'
print(char)  # Output: 됲

Perl:

my $char = "\x{B432}";
print $char;  # Output: 됲

PHP:

$char = "\x{B432}";
echo $char;  // Output: 됲

Ruby:

char = "\u{B432}"
puts char  # Output: 됲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46130;</p>  <!-- Display: 됲 -->

HTML Hexadecimal:

<p>HTML hex: &#xB432;</p>  <!-- Display: 됲 -->

URL Encoding:

// 됲 URL encoding
https://unicodefinder.com/search.php?query=%EB%90%B2

Encodings

MD5:

dc24833b3de12a5bb8cb60fade8c5f1b

SHA1:

4cf56f095f81a6484f0c1e0eb308b0f503e43deb

Base64:

65Cy