Unicode Finder

"뻑" U+BED1(HANGUL SYLLABLE BBEOG)

U+BED1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBEOG

Programming

C
\uBED1
JavaScript
\uBED1
Java
\uBED1
Json
\uBED1
Python
\uBED1
Perl
\x{BED1}
PHP
\x{BED1}
Ruby
\u{BED1}
Rust
\u{BED1}
Go
\uBED1

Web

CSS
\00BED1
HtmlDecimal
뻑
HtmlHexadecimal
뻑
Url
%EB%BB%91

Code

MD5
2abfe53b34e6170a3343fc12556083e3
Sha1
5b85de9696ee8508fcd29ced50c786f43148461c
Base64
67uR

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBED1';
console.log(char);  // Output: 뻑

Java:

char c = '\uBED1';
System.out.println(c);  // Output: 뻑

JSON:

{"text": "\uBED1"}  // Value: 뻑

Python:

char = '\uBED1'
print(char)  # Output: 뻑

Perl:

my $char = "\x{BED1}";
print $char;  # Output: 뻑

PHP:

$char = "\x{BED1}";
echo $char;  // Output: 뻑

Ruby:

char = "\u{BED1}"
puts char  # Output: 뻑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48849;</p>  <!-- Display: 뻑 -->

HTML Hexadecimal:

<p>HTML hex: &#xBED1;</p>  <!-- Display: 뻑 -->

URL Encoding:

// 뻑 URL encoding
https://unicodefinder.com/search.php?query=%EB%BB%91

Encodings

MD5:

2abfe53b34e6170a3343fc12556083e3

SHA1:

5b85de9696ee8508fcd29ced50c786f43148461c

Base64:

67uR