Unicode Finder

"삗" U+C097(HANGUL SYLLABLE BBID)

U+C097
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE BBID

Programming

C
\uC097
JavaScript
\uC097
Java
\uC097
Json
\uC097
Python
\uC097
Perl
\x{C097}
PHP
\x{C097}
Ruby
\u{C097}
Rust
\u{C097}
Go
\uC097

Web

CSS
\00C097
HtmlDecimal
삗
HtmlHexadecimal
삗
Url
%EC%82%97

Code

MD5
bbbe38e98dd6a0ee3e20bccb3d9adef3
Sha1
6a8494c0d0de491c3f55b02dc6c2a096ebcf2c6d
Base64
7IKX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uC097';
console.log(char);  // Output: 삗

Java:

char c = '\uC097';
System.out.println(c);  // Output: 삗

JSON:

{"text": "\uC097"}  // Value: 삗

Python:

char = '\uC097'
print(char)  # Output: 삗

Perl:

my $char = "\x{C097}";
print $char;  # Output: 삗

PHP:

$char = "\x{C097}";
echo $char;  // Output: 삗

Ruby:

char = "\u{C097}"
puts char  # Output: 삗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49303;</p>  <!-- Display: 삗 -->

HTML Hexadecimal:

<p>HTML hex: &#xC097;</p>  <!-- Display: 삗 -->

URL Encoding:

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

Encodings

MD5:

bbbe38e98dd6a0ee3e20bccb3d9adef3

SHA1:

6a8494c0d0de491c3f55b02dc6c2a096ebcf2c6d

Base64:

7IKX