Unicode Finder

"댬" U+B32C(HANGUL SYLLABLE DYAM)

U+B32C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYAM

Programming

C
\uB32C
JavaScript
\uB32C
Java
\uB32C
Json
\uB32C
Python
\uB32C
Perl
\x{B32C}
PHP
\x{B32C}
Ruby
\u{B32C}
Rust
\u{B32C}
Go
\uB32C

Web

CSS
\00B32C
HtmlDecimal
댬
HtmlHexadecimal
댬
Url
%EB%8C%AC

Code

MD5
15a4d8de354872eee110642825befdda
Sha1
8d9e61833ffb62fd97d365d7ad82b33419f363b1
Base64
64ys

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB32C';
console.log(char);  // Output: 댬

Java:

char c = '\uB32C';
System.out.println(c);  // Output: 댬

JSON:

{"text": "\uB32C"}  // Value: 댬

Python:

char = '\uB32C'
print(char)  # Output: 댬

Perl:

my $char = "\x{B32C}";
print $char;  # Output: 댬

PHP:

$char = "\x{B32C}";
echo $char;  // Output: 댬

Ruby:

char = "\u{B32C}"
puts char  # Output: 댬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45868;</p>  <!-- Display: 댬 -->

HTML Hexadecimal:

<p>HTML hex: &#xB32C;</p>  <!-- Display: 댬 -->

URL Encoding:

// 댬 URL encoding
https://unicodefinder.com/search.php?query=%EB%8C%AC

Encodings

MD5:

15a4d8de354872eee110642825befdda

SHA1:

8d9e61833ffb62fd97d365d7ad82b33419f363b1

Base64:

64ys