Unicode Finder

"폳" U+D3F3(HANGUL SYLLABLE POD)

U+D3F3
區塊名稱
Hangul Syllables
名稱
HANGUL SYLLABLE POD

Programming

C
\uD3F3
JavaScript
\uD3F3
Java
\uD3F3
Json
\uD3F3
Python
\uD3F3
Perl
\x{D3F3}
PHP
\x{D3F3}
Ruby
\u{D3F3}
Rust
\u{D3F3}
Go
\uD3F3

Web

CSS
\00D3F3
HtmlDecimal
폳
HtmlHexadecimal
폳
Url
%ED%8F%B3

Code

MD5
7d40bf5c67f2c2100af3228b26dbef47
Sha1
1dc7071f72326030b83a786d593ee40ed6508c84
Base64
7Y+z

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\uD3F3';
console.log(char);  // Output: 폳

Java:

char c = '\uD3F3';
System.out.println(c);  // Output: 폳

JSON:

{"text": "\uD3F3"}  // Value: 폳

Python:

char = '\uD3F3'
print(char)  # Output: 폳

Perl:

my $char = "\x{D3F3}";
print $char;  # Output: 폳

PHP:

$char = "\x{D3F3}";
echo $char;  // Output: 폳

Ruby:

char = "\u{D3F3}"
puts char  # Output: 폳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54259;</p>  <!-- Display: 폳 -->

HTML Hexadecimal:

<p>HTML hex: &#xD3F3;</p>  <!-- Display: 폳 -->

URL Encoding:

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

Encodings

MD5:

7d40bf5c67f2c2100af3228b26dbef47

SHA1:

1dc7071f72326030b83a786d593ee40ed6508c84

Base64:

7Y+z