Unicode Finder

"瓏" U+74CF(CJK UNIFIED IDEOGRAPH-74CF)

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

Programming

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

Web

CSS
\0074CF
HtmlDecimal
瓏
HtmlHexadecimal
瓏
Url
%E7%93%8F

Code

MD5
de0e4f169bdab08265cf515adebc75f7
Sha1
ad259fbb0fd85fd9d8f0eb95201310a845d78009
Base64
55OP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u74CF';
console.log(char);  // Output: 瓏

Java:

char c = '\u74CF';
System.out.println(c);  // Output: 瓏

JSON:

{"text": "\u74CF"}  // Value: 瓏

Python:

char = '\u74CF'
print(char)  # Output: 瓏

Perl:

my $char = "\x{74CF}";
print $char;  # Output: 瓏

PHP:

$char = "\x{74CF}";
echo $char;  // Output: 瓏

Ruby:

char = "\u{74CF}"
puts char  # Output: 瓏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29903;</p>  <!-- Display: 瓏 -->

HTML Hexadecimal:

<p>HTML hex: &#x74CF;</p>  <!-- Display: 瓏 -->

URL Encoding:

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

Encodings

MD5:

de0e4f169bdab08265cf515adebc75f7

SHA1:

ad259fbb0fd85fd9d8f0eb95201310a845d78009

Base64:

55OP