Unicode Finder

"옰" U+C630(HANGUL SYLLABLE OLS)

U+C630
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE OLS

Programming

C
\uC630
JavaScript
\uC630
Java
\uC630
Json
\uC630
Python
\uC630
Perl
\x{C630}
PHP
\x{C630}
Ruby
\u{C630}
Rust
\u{C630}
Go
\uC630

Web

CSS
\00C630
HtmlDecimal
옰
HtmlHexadecimal
옰
Url
%EC%98%B0

Code

MD5
85e509f411a779b7d766d8f5c549774e
Sha1
76590adebb8e8b9c60394bf33c0a3b5d265b236c
Base64
7Jiw

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC630';
console.log(char);  // Output: 옰

Java:

char c = '\uC630';
System.out.println(c);  // Output: 옰

JSON:

{"text": "\uC630"}  // Value: 옰

Python:

char = '\uC630'
print(char)  # Output: 옰

Perl:

my $char = "\x{C630}";
print $char;  # Output: 옰

PHP:

$char = "\x{C630}";
echo $char;  // Output: 옰

Ruby:

char = "\u{C630}"
puts char  # Output: 옰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50736;</p>  <!-- Display: 옰 -->

HTML Hexadecimal:

<p>HTML hex: &#xC630;</p>  <!-- Display: 옰 -->

URL Encoding:

// 옰 URL encoding
https://unicodefinder.com/search.php?query=%EC%98%B0

Encodings

MD5:

85e509f411a779b7d766d8f5c549774e

SHA1:

76590adebb8e8b9c60394bf33c0a3b5d265b236c

Base64:

7Jiw