Unicode Finder

"뾩" U+BFA9(HANGUL SYLLABLE BBOENG)

U+BFA9
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBOENG

Programming

C
\uBFA9
JavaScript
\uBFA9
Java
\uBFA9
Json
\uBFA9
Python
\uBFA9
Perl
\x{BFA9}
PHP
\x{BFA9}
Ruby
\u{BFA9}
Rust
\u{BFA9}
Go
\uBFA9

Web

CSS
\00BFA9
HtmlDecimal
뾩
HtmlHexadecimal
뾩
Url
%EB%BE%A9

Code

MD5
cff5d1bded4a7ddc682be58e7b650b9d
Sha1
32bcd3ae657387b955932e0e402a062a4d56db41
Base64
676p

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFA9';
console.log(char);  // Output: 뾩

Java:

char c = '\uBFA9';
System.out.println(c);  // Output: 뾩

JSON:

{"text": "\uBFA9"}  // Value: 뾩

Python:

char = '\uBFA9'
print(char)  # Output: 뾩

Perl:

my $char = "\x{BFA9}";
print $char;  # Output: 뾩

PHP:

$char = "\x{BFA9}";
echo $char;  // Output: 뾩

Ruby:

char = "\u{BFA9}"
puts char  # Output: 뾩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49065;</p>  <!-- Display: 뾩 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFA9;</p>  <!-- Display: 뾩 -->

URL Encoding:

// 뾩 URL encoding
https://unicodefinder.com/search.php?query=%EB%BE%A9

Encodings

MD5:

cff5d1bded4a7ddc682be58e7b650b9d

SHA1:

32bcd3ae657387b955932e0e402a062a4d56db41

Base64:

676p