Unicode Finder

"삫" U+C0AB(HANGUL SYLLABLE BBIH)

U+C0AB
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE BBIH

Programming

C
\uC0AB
JavaScript
\uC0AB
Java
\uC0AB
Json
\uC0AB
Python
\uC0AB
Perl
\x{C0AB}
PHP
\x{C0AB}
Ruby
\u{C0AB}
Rust
\u{C0AB}
Go
\uC0AB

Web

CSS
\00C0AB
HtmlDecimal
삫
HtmlHexadecimal
삫
Url
%EC%82%AB

Code

MD5
d4e8faf41d845e237fadf06e9e417b1d
Sha1
3711d473e4a6df6add448a8c646c35d2a2cd89c3
Base64
7IKr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uC0AB';
console.log(char);  // Output: 삫

Java:

char c = '\uC0AB';
System.out.println(c);  // Output: 삫

JSON:

{"text": "\uC0AB"}  // Value: 삫

Python:

char = '\uC0AB'
print(char)  # Output: 삫

Perl:

my $char = "\x{C0AB}";
print $char;  # Output: 삫

PHP:

$char = "\x{C0AB}";
echo $char;  // Output: 삫

Ruby:

char = "\u{C0AB}"
puts char  # Output: 삫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49323;</p>  <!-- Display: 삫 -->

HTML Hexadecimal:

<p>HTML hex: &#xC0AB;</p>  <!-- Display: 삫 -->

URL Encoding:

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

Encodings

MD5:

d4e8faf41d845e237fadf06e9e417b1d

SHA1:

3711d473e4a6df6add448a8c646c35d2a2cd89c3

Base64:

7IKr