Unicode Finder

"딄" U+B504(HANGUL SYLLABLE DYILS)

U+B504
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYILS

Programming

C
\uB504
JavaScript
\uB504
Java
\uB504
Json
\uB504
Python
\uB504
Perl
\x{B504}
PHP
\x{B504}
Ruby
\u{B504}
Rust
\u{B504}
Go
\uB504

Web

CSS
\00B504
HtmlDecimal
딄
HtmlHexadecimal
딄
Url
%EB%94%84

Code

MD5
24770faa78d1c39c07b683199b45379c
Sha1
272c492985cab4ac4b1298a7f9769f9e6721644a
Base64
65SE

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB504';
console.log(char);  // Output: 딄

Java:

char c = '\uB504';
System.out.println(c);  // Output: 딄

JSON:

{"text": "\uB504"}  // Value: 딄

Python:

char = '\uB504'
print(char)  # Output: 딄

Perl:

my $char = "\x{B504}";
print $char;  # Output: 딄

PHP:

$char = "\x{B504}";
echo $char;  // Output: 딄

Ruby:

char = "\u{B504}"
puts char  # Output: 딄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46340;</p>  <!-- Display: 딄 -->

HTML Hexadecimal:

<p>HTML hex: &#xB504;</p>  <!-- Display: 딄 -->

URL Encoding:

// 딄 URL encoding
https://unicodefinder.com/search.php?query=%EB%94%84

Encodings

MD5:

24770faa78d1c39c07b683199b45379c

SHA1:

272c492985cab4ac4b1298a7f9769f9e6721644a

Base64:

65SE