Unicode Finder

"숫" U+C22B(HANGUL SYLLABLE SUS)

U+C22B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SUS

Programming

C
\uC22B
JavaScript
\uC22B
Java
\uC22B
Json
\uC22B
Python
\uC22B
Perl
\x{C22B}
PHP
\x{C22B}
Ruby
\u{C22B}
Rust
\u{C22B}
Go
\uC22B

Web

CSS
\00C22B
HtmlDecimal
숫
HtmlHexadecimal
숫
Url
%EC%88%AB

Code

MD5
97ca2c23f1228f3480fce5966699ffcf
Sha1
7816c7aecb56945dc6eab30e8c821fb00d963332
Base64
7Iir

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC22B';
console.log(char);  // Output: 숫

Java:

char c = '\uC22B';
System.out.println(c);  // Output: 숫

JSON:

{"text": "\uC22B"}  // Value: 숫

Python:

char = '\uC22B'
print(char)  # Output: 숫

Perl:

my $char = "\x{C22B}";
print $char;  # Output: 숫

PHP:

$char = "\x{C22B}";
echo $char;  // Output: 숫

Ruby:

char = "\u{C22B}"
puts char  # Output: 숫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49707;</p>  <!-- Display: 숫 -->

HTML Hexadecimal:

<p>HTML hex: &#xC22B;</p>  <!-- Display: 숫 -->

URL Encoding:

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

Encodings

MD5:

97ca2c23f1228f3480fce5966699ffcf

SHA1:

7816c7aecb56945dc6eab30e8c821fb00d963332

Base64:

7Iir