Unicode Finder

"뀎" U+B00E(HANGUL SYLLABLE GGWIGG)

U+B00E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGWIGG

Programming

C
\uB00E
JavaScript
\uB00E
Java
\uB00E
Json
\uB00E
Python
\uB00E
Perl
\x{B00E}
PHP
\x{B00E}
Ruby
\u{B00E}
Rust
\u{B00E}
Go
\uB00E

Web

CSS
\00B00E
HtmlDecimal
뀎
HtmlHexadecimal
뀎
Url
%EB%80%8E

Code

MD5
248c7fc6d5928629e9766b1453bf5be3
Sha1
150074086526c00867a7fd53bbba6ee41912953f
Base64
64CO

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB00E';
console.log(char);  // Output: 뀎

Java:

char c = '\uB00E';
System.out.println(c);  // Output: 뀎

JSON:

{"text": "\uB00E"}  // Value: 뀎

Python:

char = '\uB00E'
print(char)  # Output: 뀎

Perl:

my $char = "\x{B00E}";
print $char;  # Output: 뀎

PHP:

$char = "\x{B00E}";
echo $char;  // Output: 뀎

Ruby:

char = "\u{B00E}"
puts char  # Output: 뀎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45070;</p>  <!-- Display: 뀎 -->

HTML Hexadecimal:

<p>HTML hex: &#xB00E;</p>  <!-- Display: 뀎 -->

URL Encoding:

// 뀎 URL encoding
https://unicodefinder.com/search.php?query=%EB%80%8E

Encodings

MD5:

248c7fc6d5928629e9766b1453bf5be3

SHA1:

150074086526c00867a7fd53bbba6ee41912953f

Base64:

64CO