Unicode Finder

"폾" U+D3FE(HANGUL SYLLABLE POBS)

U+D3FE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE POBS

Programming

C
\uD3FE
JavaScript
\uD3FE
Java
\uD3FE
Json
\uD3FE
Python
\uD3FE
Perl
\x{D3FE}
PHP
\x{D3FE}
Ruby
\u{D3FE}
Rust
\u{D3FE}
Go
\uD3FE

Web

CSS
\00D3FE
HtmlDecimal
폾
HtmlHexadecimal
폾
Url
%ED%8F%BE

Code

MD5
a9a6dc9d2d94d0e3892f28eb44bd4d2f
Sha1
2916c951a2867fb9c311a4e0532dc532e50ec9c4
Base64
7Y++

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD3FE';
console.log(char);  // Output: 폾

Java:

char c = '\uD3FE';
System.out.println(c);  // Output: 폾

JSON:

{"text": "\uD3FE"}  // Value: 폾

Python:

char = '\uD3FE'
print(char)  # Output: 폾

Perl:

my $char = "\x{D3FE}";
print $char;  # Output: 폾

PHP:

$char = "\x{D3FE}";
echo $char;  // Output: 폾

Ruby:

char = "\u{D3FE}"
puts char  # Output: 폾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54270;</p>  <!-- Display: 폾 -->

HTML Hexadecimal:

<p>HTML hex: &#xD3FE;</p>  <!-- Display: 폾 -->

URL Encoding:

// 폾 URL encoding
https://unicodefinder.com/search.php?query=%ED%8F%BE

Encodings

MD5:

a9a6dc9d2d94d0e3892f28eb44bd4d2f

SHA1:

2916c951a2867fb9c311a4e0532dc532e50ec9c4

Base64:

7Y++