Unicode Finder

"뾘" U+BF98(HANGUL SYLLABLE BBOEN)

U+BF98
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBOEN

Programming

C
\uBF98
JavaScript
\uBF98
Java
\uBF98
Json
\uBF98
Python
\uBF98
Perl
\x{BF98}
PHP
\x{BF98}
Ruby
\u{BF98}
Rust
\u{BF98}
Go
\uBF98

Web

CSS
\00BF98
HtmlDecimal
뾘
HtmlHexadecimal
뾘
Url
%EB%BE%98

Code

MD5
13eafbc100fd7ac47d1261afd6ab79d7
Sha1
dc3d5f01e354aed24ea66919f2693914ba388227
Base64
676Y

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF98';
console.log(char);  // Output: 뾘

Java:

char c = '\uBF98';
System.out.println(c);  // Output: 뾘

JSON:

{"text": "\uBF98"}  // Value: 뾘

Python:

char = '\uBF98'
print(char)  # Output: 뾘

Perl:

my $char = "\x{BF98}";
print $char;  # Output: 뾘

PHP:

$char = "\x{BF98}";
echo $char;  // Output: 뾘

Ruby:

char = "\u{BF98}"
puts char  # Output: 뾘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49048;</p>  <!-- Display: 뾘 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF98;</p>  <!-- Display: 뾘 -->

URL Encoding:

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

Encodings

MD5:

13eafbc100fd7ac47d1261afd6ab79d7

SHA1:

dc3d5f01e354aed24ea66919f2693914ba388227

Base64:

676Y