Unicode Finder

"瓳" U+74F3(CJK UNIFIED IDEOGRAPH-74F3)

U+74F3
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-74F3

Programming

C
\u74F3
JavaScript
\u74F3
Java
\u74F3
Json
\u74F3
Python
\u74F3
Perl
\x{74F3}
PHP
\x{74F3}
Ruby
\u{74F3}
Rust
\u{74F3}
Go
\u74F3

Web

CSS
\0074F3
HtmlDecimal
瓳
HtmlHexadecimal
瓳
Url
%E7%93%B3

Code

MD5
3c9c2fbbda47b1f025e1164dad92fe43
Sha1
95d620a319b586d645b8cc9b53bb062745f9ba2c
Base64
55Oz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u74F3';
console.log(char);  // Output: 瓳

Java:

char c = '\u74F3';
System.out.println(c);  // Output: 瓳

JSON:

{"text": "\u74F3"}  // Value: 瓳

Python:

char = '\u74F3'
print(char)  # Output: 瓳

Perl:

my $char = "\x{74F3}";
print $char;  # Output: 瓳

PHP:

$char = "\x{74F3}";
echo $char;  // Output: 瓳

Ruby:

char = "\u{74F3}"
puts char  # Output: 瓳

Rust:

let c = '\u{74F3}';
println!("{}", c);  // Output: 瓳

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0074F3";  /* Display: 瓳 */
}

HTML Decimal:

<p>HTML decimal: &#29939;</p>  <!-- Display: 瓳 -->

HTML Hexadecimal:

<p>HTML hex: &#x74F3;</p>  <!-- Display: 瓳 -->

URL Encoding:

// 瓳 URL encoding
https://unicodefinder.com/search.php?query=%E7%93%B3

Encodings

MD5:

3c9c2fbbda47b1f025e1164dad92fe43

SHA1:

95d620a319b586d645b8cc9b53bb062745f9ba2c

Base64:

55Oz