Unicode Finder

"삥" U+C0A5(HANGUL SYLLABLE BBING)

U+C0A5
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE BBING

Programming

C
\uC0A5
JavaScript
\uC0A5
Java
\uC0A5
Json
\uC0A5
Python
\uC0A5
Perl
\x{C0A5}
PHP
\x{C0A5}
Ruby
\u{C0A5}
Rust
\u{C0A5}
Go
\uC0A5

Web

CSS
\00C0A5
HtmlDecimal
삥
HtmlHexadecimal
삥
Url
%EC%82%A5

Code

MD5
fdff5e0496a7c5a3cb5ab5aa1c491dd5
Sha1
b95adf1e412a99719e47723d39de94dc854fb5ee
Base64
7IKl

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uC0A5';
console.log(char);  // Output: 삥

Java:

char c = '\uC0A5';
System.out.println(c);  // Output: 삥

JSON:

{"text": "\uC0A5"}  // Value: 삥

Python:

char = '\uC0A5'
print(char)  # Output: 삥

Perl:

my $char = "\x{C0A5}";
print $char;  # Output: 삥

PHP:

$char = "\x{C0A5}";
echo $char;  // Output: 삥

Ruby:

char = "\u{C0A5}"
puts char  # Output: 삥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49317;</p>  <!-- Display: 삥 -->

HTML Hexadecimal:

<p>HTML hex: &#xC0A5;</p>  <!-- Display: 삥 -->

URL Encoding:

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

Encodings

MD5:

fdff5e0496a7c5a3cb5ab5aa1c491dd5

SHA1:

b95adf1e412a99719e47723d39de94dc854fb5ee

Base64:

7IKl