Unicode Finder

"낏" U+B08F(HANGUL SYLLABLE GGIS)

U+B08F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGIS

Programming

C
\uB08F
JavaScript
\uB08F
Java
\uB08F
Json
\uB08F
Python
\uB08F
Perl
\x{B08F}
PHP
\x{B08F}
Ruby
\u{B08F}
Rust
\u{B08F}
Go
\uB08F

Web

CSS
\00B08F
HtmlDecimal
낏
HtmlHexadecimal
낏
Url
%EB%82%8F

Code

MD5
248e7995d360da0a97974b6220fcd1b3
Sha1
a8281cf516d8426be624ee400c36e550e8f8eec2
Base64
64KP

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB08F';
console.log(char);  // Output: 낏

Java:

char c = '\uB08F';
System.out.println(c);  // Output: 낏

JSON:

{"text": "\uB08F"}  // Value: 낏

Python:

char = '\uB08F'
print(char)  # Output: 낏

Perl:

my $char = "\x{B08F}";
print $char;  # Output: 낏

PHP:

$char = "\x{B08F}";
echo $char;  // Output: 낏

Ruby:

char = "\u{B08F}"
puts char  # Output: 낏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45199;</p>  <!-- Display: 낏 -->

HTML Hexadecimal:

<p>HTML hex: &#xB08F;</p>  <!-- Display: 낏 -->

URL Encoding:

// 낏 URL encoding
https://unicodefinder.com/search.php?query=%EB%82%8F

Encodings

MD5:

248e7995d360da0a97974b6220fcd1b3

SHA1:

a8281cf516d8426be624ee400c36e550e8f8eec2

Base64:

64KP