Unicode Finder

"닸" U+B2F8(HANGUL SYLLABLE DASS)

U+B2F8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DASS

Programming

C
\uB2F8
JavaScript
\uB2F8
Java
\uB2F8
Json
\uB2F8
Python
\uB2F8
Perl
\x{B2F8}
PHP
\x{B2F8}
Ruby
\u{B2F8}
Rust
\u{B2F8}
Go
\uB2F8

Web

CSS
\00B2F8
HtmlDecimal
닸
HtmlHexadecimal
닸
Url
%EB%8B%B8

Code

MD5
968d59d54b89fe7c5afe98d6a73d8488
Sha1
d7ecff25379e6a1760b34a583e6cee70ae752ed5
Base64
64u4

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB2F8';
console.log(char);  // Output: 닸

Java:

char c = '\uB2F8';
System.out.println(c);  // Output: 닸

JSON:

{"text": "\uB2F8"}  // Value: 닸

Python:

char = '\uB2F8'
print(char)  # Output: 닸

Perl:

my $char = "\x{B2F8}";
print $char;  # Output: 닸

PHP:

$char = "\x{B2F8}";
echo $char;  // Output: 닸

Ruby:

char = "\u{B2F8}"
puts char  # Output: 닸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45816;</p>  <!-- Display: 닸 -->

HTML Hexadecimal:

<p>HTML hex: &#xB2F8;</p>  <!-- Display: 닸 -->

URL Encoding:

// 닸 URL encoding
https://unicodefinder.com/search.php?query=%EB%8B%B8

Encodings

MD5:

968d59d54b89fe7c5afe98d6a73d8488

SHA1:

d7ecff25379e6a1760b34a583e6cee70ae752ed5

Base64:

64u4