Unicode Finder

"瓑" U+74D1(CJK UNIFIED IDEOGRAPH-74D1)

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

Programming

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

Web

CSS
\0074D1
HtmlDecimal
瓑
HtmlHexadecimal
瓑
Url
%E7%93%91

Code

MD5
2ea4304d6e9f3e809b5a23ab6dac3601
Sha1
9a9200844a41e699f290a048b68a122e016eb2cd
Base64
55OR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u74D1';
console.log(char);  // Output: 瓑

Java:

char c = '\u74D1';
System.out.println(c);  // Output: 瓑

JSON:

{"text": "\u74D1"}  // Value: 瓑

Python:

char = '\u74D1'
print(char)  # Output: 瓑

Perl:

my $char = "\x{74D1}";
print $char;  # Output: 瓑

PHP:

$char = "\x{74D1}";
echo $char;  // Output: 瓑

Ruby:

char = "\u{74D1}"
puts char  # Output: 瓑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29905;</p>  <!-- Display: 瓑 -->

HTML Hexadecimal:

<p>HTML hex: &#x74D1;</p>  <!-- Display: 瓑 -->

URL Encoding:

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

Encodings

MD5:

2ea4304d6e9f3e809b5a23ab6dac3601

SHA1:

9a9200844a41e699f290a048b68a122e016eb2cd

Base64:

55OR