Unicode Finder

"쁟" U+C05F(HANGUL SYLLABLE BBEUD)

U+C05F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBEUD

Programming

C
\uC05F
JavaScript
\uC05F
Java
\uC05F
Json
\uC05F
Python
\uC05F
Perl
\x{C05F}
PHP
\x{C05F}
Ruby
\u{C05F}
Rust
\u{C05F}
Go
\uC05F

Web

CSS
\00C05F
HtmlDecimal
쁟
HtmlHexadecimal
쁟
Url
%EC%81%9F

Code

MD5
d7354bd9ac244d58c09d3fb42de964b2
Sha1
aa58f0f61c237a411c4ca696f0a4c3d526bebe5f
Base64
7IGf

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC05F';
console.log(char);  // Output: 쁟

Java:

char c = '\uC05F';
System.out.println(c);  // Output: 쁟

JSON:

{"text": "\uC05F"}  // Value: 쁟

Python:

char = '\uC05F'
print(char)  # Output: 쁟

Perl:

my $char = "\x{C05F}";
print $char;  # Output: 쁟

PHP:

$char = "\x{C05F}";
echo $char;  // Output: 쁟

Ruby:

char = "\u{C05F}"
puts char  # Output: 쁟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49247;</p>  <!-- Display: 쁟 -->

HTML Hexadecimal:

<p>HTML hex: &#xC05F;</p>  <!-- Display: 쁟 -->

URL Encoding:

// 쁟 URL encoding
https://unicodefinder.com/search.php?query=%EC%81%9F

Encodings

MD5:

d7354bd9ac244d58c09d3fb42de964b2

SHA1:

aa58f0f61c237a411c4ca696f0a4c3d526bebe5f

Base64:

7IGf