Unicode Finder

"댘" U+B318(HANGUL SYLLABLE DAEK)

U+B318
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DAEK

Programming

C
\uB318
JavaScript
\uB318
Java
\uB318
Json
\uB318
Python
\uB318
Perl
\x{B318}
PHP
\x{B318}
Ruby
\u{B318}
Rust
\u{B318}
Go
\uB318

Web

CSS
\00B318
HtmlDecimal
댘
HtmlHexadecimal
댘
Url
%EB%8C%98

Code

MD5
8a784e48a1f65a29b8958ea95e992f72
Sha1
34d49d6bc5a79dd3b72468ef5c674578d014e59f
Base64
64yY

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB318';
console.log(char);  // Output: 댘

Java:

char c = '\uB318';
System.out.println(c);  // Output: 댘

JSON:

{"text": "\uB318"}  // Value: 댘

Python:

char = '\uB318'
print(char)  # Output: 댘

Perl:

my $char = "\x{B318}";
print $char;  # Output: 댘

PHP:

$char = "\x{B318}";
echo $char;  // Output: 댘

Ruby:

char = "\u{B318}"
puts char  # Output: 댘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45848;</p>  <!-- Display: 댘 -->

HTML Hexadecimal:

<p>HTML hex: &#xB318;</p>  <!-- Display: 댘 -->

URL Encoding:

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

Encodings

MD5:

8a784e48a1f65a29b8958ea95e992f72

SHA1:

34d49d6bc5a79dd3b72468ef5c674578d014e59f

Base64:

64yY