Unicode Finder

"살" U+C0B4(HANGUL SYLLABLE SAL)

U+C0B4
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE SAL

Programming

C
\uC0B4
JavaScript
\uC0B4
Java
\uC0B4
Json
\uC0B4
Python
\uC0B4
Perl
\x{C0B4}
PHP
\x{C0B4}
Ruby
\u{C0B4}
Rust
\u{C0B4}
Go
\uC0B4

Web

CSS
\00C0B4
HtmlDecimal
살
HtmlHexadecimal
살
Url
%EC%82%B4

Code

MD5
5d4dee8ef414da184a0fe38a51501305
Sha1
7a77be30407d5bf56f78b5746c035342a052f602
Base64
7IK0

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uC0B4';
console.log(char);  // Output: 살

Java:

char c = '\uC0B4';
System.out.println(c);  // Output: 살

JSON:

{"text": "\uC0B4"}  // Value: 살

Python:

char = '\uC0B4'
print(char)  # Output: 살

Perl:

my $char = "\x{C0B4}";
print $char;  # Output: 살

PHP:

$char = "\x{C0B4}";
echo $char;  // Output: 살

Ruby:

char = "\u{C0B4}"
puts char  # Output: 살

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49332;</p>  <!-- Display: 살 -->

HTML Hexadecimal:

<p>HTML hex: &#xC0B4;</p>  <!-- Display: 살 -->

URL Encoding:

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

Encodings

MD5:

5d4dee8ef414da184a0fe38a51501305

SHA1:

7a77be30407d5bf56f78b5746c035342a052f602

Base64:

7IK0