Unicode Finder

"됷" U+B437(HANGUL SYLLABLE DYOGS)

U+B437
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYOGS

Programming

C
\uB437
JavaScript
\uB437
Java
\uB437
Json
\uB437
Python
\uB437
Perl
\x{B437}
PHP
\x{B437}
Ruby
\u{B437}
Rust
\u{B437}
Go
\uB437

Web

CSS
\00B437
HtmlDecimal
됷
HtmlHexadecimal
됷
Url
%EB%90%B7

Code

MD5
4b5e6b5244d0335354bff6610d370757
Sha1
5a33a9e7f3e8f522f25ee56cc114579d8a0179e4
Base64
65C3

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB437';
console.log(char);  // Output: 됷

Java:

char c = '\uB437';
System.out.println(c);  // Output: 됷

JSON:

{"text": "\uB437"}  // Value: 됷

Python:

char = '\uB437'
print(char)  # Output: 됷

Perl:

my $char = "\x{B437}";
print $char;  # Output: 됷

PHP:

$char = "\x{B437}";
echo $char;  // Output: 됷

Ruby:

char = "\u{B437}"
puts char  # Output: 됷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46135;</p>  <!-- Display: 됷 -->

HTML Hexadecimal:

<p>HTML hex: &#xB437;</p>  <!-- Display: 됷 -->

URL Encoding:

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

Encodings

MD5:

4b5e6b5244d0335354bff6610d370757

SHA1:

5a33a9e7f3e8f522f25ee56cc114579d8a0179e4

Base64:

65C3