Unicode Finder

"삂" U+C082(HANGUL SYLLABLE BBYILP)

U+C082
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYILP

Programming

C
\uC082
JavaScript
\uC082
Java
\uC082
Json
\uC082
Python
\uC082
Perl
\x{C082}
PHP
\x{C082}
Ruby
\u{C082}
Rust
\u{C082}
Go
\uC082

Web

CSS
\00C082
HtmlDecimal
삂
HtmlHexadecimal
삂
Url
%EC%82%82

Code

MD5
d30792a5dfa03b98db88850597a3d63a
Sha1
be9b2da036e1588bbca050b3250b2f317ad784a3
Base64
7IKC

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC082';
console.log(char);  // Output: 삂

Java:

char c = '\uC082';
System.out.println(c);  // Output: 삂

JSON:

{"text": "\uC082"}  // Value: 삂

Python:

char = '\uC082'
print(char)  # Output: 삂

Perl:

my $char = "\x{C082}";
print $char;  # Output: 삂

PHP:

$char = "\x{C082}";
echo $char;  // Output: 삂

Ruby:

char = "\u{C082}"
puts char  # Output: 삂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49282;</p>  <!-- Display: 삂 -->

HTML Hexadecimal:

<p>HTML hex: &#xC082;</p>  <!-- Display: 삂 -->

URL Encoding:

// 삂 URL encoding
https://unicodefinder.com/search.php?query=%EC%82%82

Encodings

MD5:

d30792a5dfa03b98db88850597a3d63a

SHA1:

be9b2da036e1588bbca050b3250b2f317ad784a3

Base64:

7IKC