Unicode Finder

"瓲" U+74F2(CJK UNIFIED IDEOGRAPH-74F2)

U+74F2
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-74F2

Programming

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

Web

CSS
\0074F2
HtmlDecimal
瓲
HtmlHexadecimal
瓲
Url
%E7%93%B2

Code

MD5
532d838e9feec0ba9e263721a18aa79d
Sha1
ad51db9f8bf15c56d04d59e5fd84132c667d3aac
Base64
55Oy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u74F2';
console.log(char);  // Output: 瓲

Java:

char c = '\u74F2';
System.out.println(c);  // Output: 瓲

JSON:

{"text": "\u74F2"}  // Value: 瓲

Python:

char = '\u74F2'
print(char)  # Output: 瓲

Perl:

my $char = "\x{74F2}";
print $char;  # Output: 瓲

PHP:

$char = "\x{74F2}";
echo $char;  // Output: 瓲

Ruby:

char = "\u{74F2}"
puts char  # Output: 瓲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29938;</p>  <!-- Display: 瓲 -->

HTML Hexadecimal:

<p>HTML hex: &#x74F2;</p>  <!-- Display: 瓲 -->

URL Encoding:

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

Encodings

MD5:

532d838e9feec0ba9e263721a18aa79d

SHA1:

ad51db9f8bf15c56d04d59e5fd84132c667d3aac

Base64:

55Oy