Unicode Finder

"쟁" U+C7C1(HANGUL SYLLABLE JAENG)

U+C7C1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JAENG

Programming

C
\uC7C1
JavaScript
\uC7C1
Java
\uC7C1
Json
\uC7C1
Python
\uC7C1
Perl
\x{C7C1}
PHP
\x{C7C1}
Ruby
\u{C7C1}
Rust
\u{C7C1}
Go
\uC7C1

Web

CSS
\00C7C1
HtmlDecimal
쟁
HtmlHexadecimal
쟁
Url
%EC%9F%81

Code

MD5
b68bb690473d10485cba5d3afccc7179
Sha1
fafaa10ac4102d1a9ea92f1c0e6355dede2f0e2a
Base64
7J+B

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC7C1';
console.log(char);  // Output: 쟁

Java:

char c = '\uC7C1';
System.out.println(c);  // Output: 쟁

JSON:

{"text": "\uC7C1"}  // Value: 쟁

Python:

char = '\uC7C1'
print(char)  # Output: 쟁

Perl:

my $char = "\x{C7C1}";
print $char;  # Output: 쟁

PHP:

$char = "\x{C7C1}";
echo $char;  // Output: 쟁

Ruby:

char = "\u{C7C1}"
puts char  # Output: 쟁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51137;</p>  <!-- Display: 쟁 -->

HTML Hexadecimal:

<p>HTML hex: &#xC7C1;</p>  <!-- Display: 쟁 -->

URL Encoding:

// 쟁 URL encoding
https://unicodefinder.com/search.php?query=%EC%9F%81

Encodings

MD5:

b68bb690473d10485cba5d3afccc7179

SHA1:

fafaa10ac4102d1a9ea92f1c0e6355dede2f0e2a

Base64:

7J+B