Unicode Finder

"민" U+BBFC(HANGUL SYLLABLE MIN)

U+BBFC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MIN

Programming

C
\uBBFC
JavaScript
\uBBFC
Java
\uBBFC
Json
\uBBFC
Python
\uBBFC
Perl
\x{BBFC}
PHP
\x{BBFC}
Ruby
\u{BBFC}
Rust
\u{BBFC}
Go
\uBBFC

Web

CSS
\00BBFC
HtmlDecimal
민
HtmlHexadecimal
민
Url
%EB%AF%BC

Code

MD5
1477e71d3d1c115e0ee16d4548c04d8e
Sha1
08c80ddf8a7dfc99385f74b409614bb72b5288e9
Base64
66+8

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBBFC';
console.log(char);  // Output: 민

Java:

char c = '\uBBFC';
System.out.println(c);  // Output: 민

JSON:

{"text": "\uBBFC"}  // Value: 민

Python:

char = '\uBBFC'
print(char)  # Output: 민

Perl:

my $char = "\x{BBFC}";
print $char;  # Output: 민

PHP:

$char = "\x{BBFC}";
echo $char;  // Output: 민

Ruby:

char = "\u{BBFC}"
puts char  # Output: 민

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48124;</p>  <!-- Display: 민 -->

HTML Hexadecimal:

<p>HTML hex: &#xBBFC;</p>  <!-- Display: 민 -->

URL Encoding:

// 민 URL encoding
https://unicodefinder.com/search.php?query=%EB%AF%BC

Encodings

MD5:

1477e71d3d1c115e0ee16d4548c04d8e

SHA1:

08c80ddf8a7dfc99385f74b409614bb72b5288e9

Base64:

66+8