Unicode Finder

"瓘" U+74D8(CJK UNIFIED IDEOGRAPH-74D8)

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

Programming

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

Web

CSS
\0074D8
HtmlDecimal
瓘
HtmlHexadecimal
瓘
Url
%E7%93%98

Code

MD5
469731927e4745ef24e8f0d353c5a7c5
Sha1
da31bfbee3ca87eb70c7fcd29b7d5d799975009d
Base64
55OY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u74D8';
console.log(char);  // Output: 瓘

Java:

char c = '\u74D8';
System.out.println(c);  // Output: 瓘

JSON:

{"text": "\u74D8"}  // Value: 瓘

Python:

char = '\u74D8'
print(char)  # Output: 瓘

Perl:

my $char = "\x{74D8}";
print $char;  # Output: 瓘

PHP:

$char = "\x{74D8}";
echo $char;  // Output: 瓘

Ruby:

char = "\u{74D8}"
puts char  # Output: 瓘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29912;</p>  <!-- Display: 瓘 -->

HTML Hexadecimal:

<p>HTML hex: &#x74D8;</p>  <!-- Display: 瓘 -->

URL Encoding:

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

Encodings

MD5:

469731927e4745ef24e8f0d353c5a7c5

SHA1:

da31bfbee3ca87eb70c7fcd29b7d5d799975009d

Base64:

55OY