Unicode Finder

"瓕" U+74D5(CJK UNIFIED IDEOGRAPH-74D5)

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

Programming

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

Web

CSS
\0074D5
HtmlDecimal
瓕
HtmlHexadecimal
瓕
Url
%E7%93%95

Code

MD5
19fd5224b93cc43a891370586b63c0b6
Sha1
0fd3a925b793b2e33bbe04c5100bd22aa9e36abf
Base64
55OV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u74D5';
console.log(char);  // Output: 瓕

Java:

char c = '\u74D5';
System.out.println(c);  // Output: 瓕

JSON:

{"text": "\u74D5"}  // Value: 瓕

Python:

char = '\u74D5'
print(char)  # Output: 瓕

Perl:

my $char = "\x{74D5}";
print $char;  # Output: 瓕

PHP:

$char = "\x{74D5}";
echo $char;  // Output: 瓕

Ruby:

char = "\u{74D5}"
puts char  # Output: 瓕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29909;</p>  <!-- Display: 瓕 -->

HTML Hexadecimal:

<p>HTML hex: &#x74D5;</p>  <!-- Display: 瓕 -->

URL Encoding:

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

Encodings

MD5:

19fd5224b93cc43a891370586b63c0b6

SHA1:

0fd3a925b793b2e33bbe04c5100bd22aa9e36abf

Base64:

55OV