Unicode Finder

"뀬" U+B02C(HANGUL SYLLABLE GGYUN)

U+B02C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGYUN

Programming

C
\uB02C
JavaScript
\uB02C
Java
\uB02C
Json
\uB02C
Python
\uB02C
Perl
\x{B02C}
PHP
\x{B02C}
Ruby
\u{B02C}
Rust
\u{B02C}
Go
\uB02C

Web

CSS
\00B02C
HtmlDecimal
뀬
HtmlHexadecimal
뀬
Url
%EB%80%AC

Code

MD5
dfa1773b7c94af4ce7af806216904c78
Sha1
2ad8123c023f93840d7940f5ffe83605a82faa45
Base64
64Cs

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB02C';
console.log(char);  // Output: 뀬

Java:

char c = '\uB02C';
System.out.println(c);  // Output: 뀬

JSON:

{"text": "\uB02C"}  // Value: 뀬

Python:

char = '\uB02C'
print(char)  # Output: 뀬

Perl:

my $char = "\x{B02C}";
print $char;  # Output: 뀬

PHP:

$char = "\x{B02C}";
echo $char;  // Output: 뀬

Ruby:

char = "\u{B02C}"
puts char  # Output: 뀬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45100;</p>  <!-- Display: 뀬 -->

HTML Hexadecimal:

<p>HTML hex: &#xB02C;</p>  <!-- Display: 뀬 -->

URL Encoding:

// 뀬 URL encoding
https://unicodefinder.com/search.php?query=%EB%80%AC

Encodings

MD5:

dfa1773b7c94af4ce7af806216904c78

SHA1:

2ad8123c023f93840d7940f5ffe83605a82faa45

Base64:

64Cs