Unicode Finder

"瓓" U+74D3(CJK UNIFIED IDEOGRAPH-74D3)

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

Programming

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

Web

CSS
\0074D3
HtmlDecimal
瓓
HtmlHexadecimal
瓓
Url
%E7%93%93

Code

MD5
52c5e05f2888701065497c7e15eb7b13
Sha1
2a6196b78cce2158af478d97e19e2259d8bfc34c
Base64
55OT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u74D3';
console.log(char);  // Output: 瓓

Java:

char c = '\u74D3';
System.out.println(c);  // Output: 瓓

JSON:

{"text": "\u74D3"}  // Value: 瓓

Python:

char = '\u74D3'
print(char)  # Output: 瓓

Perl:

my $char = "\x{74D3}";
print $char;  # Output: 瓓

PHP:

$char = "\x{74D3}";
echo $char;  // Output: 瓓

Ruby:

char = "\u{74D3}"
puts char  # Output: 瓓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29907;</p>  <!-- Display: 瓓 -->

HTML Hexadecimal:

<p>HTML hex: &#x74D3;</p>  <!-- Display: 瓓 -->

URL Encoding:

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

Encodings

MD5:

52c5e05f2888701065497c7e15eb7b13

SHA1:

2a6196b78cce2158af478d97e19e2259d8bfc34c

Base64:

55OT