Unicode Finder

"뽹" U+BF79(HANGUL SYLLABLE BBWAEG)

U+BF79
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWAEG

Programming

C
\uBF79
JavaScript
\uBF79
Java
\uBF79
Json
\uBF79
Python
\uBF79
Perl
\x{BF79}
PHP
\x{BF79}
Ruby
\u{BF79}
Rust
\u{BF79}
Go
\uBF79

Web

CSS
\00BF79
HtmlDecimal
뽹
HtmlHexadecimal
뽹
Url
%EB%BD%B9

Code

MD5
355bf88f6a2c7dbbe59350bdc45c36b0
Sha1
f286c7f9e839d85df9a853424248d855759cc80d
Base64
6725

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF79';
console.log(char);  // Output: 뽹

Java:

char c = '\uBF79';
System.out.println(c);  // Output: 뽹

JSON:

{"text": "\uBF79"}  // Value: 뽹

Python:

char = '\uBF79'
print(char)  # Output: 뽹

Perl:

my $char = "\x{BF79}";
print $char;  # Output: 뽹

PHP:

$char = "\x{BF79}";
echo $char;  // Output: 뽹

Ruby:

char = "\u{BF79}"
puts char  # Output: 뽹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49017;</p>  <!-- Display: 뽹 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF79;</p>  <!-- Display: 뽹 -->

URL Encoding:

// 뽹 URL encoding
https://unicodefinder.com/search.php?query=%EB%BD%B9

Encodings

MD5:

355bf88f6a2c7dbbe59350bdc45c36b0

SHA1:

f286c7f9e839d85df9a853424248d855759cc80d

Base64:

6725