Unicode Finder

"댟" U+B31F(HANGUL SYLLABLE DYAGS)

U+B31F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYAGS

Programming

C
\uB31F
JavaScript
\uB31F
Java
\uB31F
Json
\uB31F
Python
\uB31F
Perl
\x{B31F}
PHP
\x{B31F}
Ruby
\u{B31F}
Rust
\u{B31F}
Go
\uB31F

Web

CSS
\00B31F
HtmlDecimal
댟
HtmlHexadecimal
댟
Url
%EB%8C%9F

Code

MD5
3ff752cf5b9e02b70d555a934b429b0a
Sha1
17fe45a3ae05d618076a199f3632feb5dfe40ccb
Base64
64yf

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB31F';
console.log(char);  // Output: 댟

Java:

char c = '\uB31F';
System.out.println(c);  // Output: 댟

JSON:

{"text": "\uB31F"}  // Value: 댟

Python:

char = '\uB31F'
print(char)  # Output: 댟

Perl:

my $char = "\x{B31F}";
print $char;  # Output: 댟

PHP:

$char = "\x{B31F}";
echo $char;  // Output: 댟

Ruby:

char = "\u{B31F}"
puts char  # Output: 댟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45855;</p>  <!-- Display: 댟 -->

HTML Hexadecimal:

<p>HTML hex: &#xB31F;</p>  <!-- Display: 댟 -->

URL Encoding:

// 댟 URL encoding
https://unicodefinder.com/search.php?query=%EB%8C%9F

Encodings

MD5:

3ff752cf5b9e02b70d555a934b429b0a

SHA1:

17fe45a3ae05d618076a199f3632feb5dfe40ccb

Base64:

64yf