Unicode Finder

"瓔" U+74D4(CJK UNIFIED IDEOGRAPH-74D4)

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

Programming

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

Web

CSS
\0074D4
HtmlDecimal
瓔
HtmlHexadecimal
瓔
Url
%E7%93%94

Code

MD5
da4fdb1d80629671df8c647576d83723
Sha1
26eb7429f90015ddddaa70e1d6d5077709842eee
Base64
55OU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u74D4';
console.log(char);  // Output: 瓔

Java:

char c = '\u74D4';
System.out.println(c);  // Output: 瓔

JSON:

{"text": "\u74D4"}  // Value: 瓔

Python:

char = '\u74D4'
print(char)  # Output: 瓔

Perl:

my $char = "\x{74D4}";
print $char;  # Output: 瓔

PHP:

$char = "\x{74D4}";
echo $char;  // Output: 瓔

Ruby:

char = "\u{74D4}"
puts char  # Output: 瓔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29908;</p>  <!-- Display: 瓔 -->

HTML Hexadecimal:

<p>HTML hex: &#x74D4;</p>  <!-- Display: 瓔 -->

URL Encoding:

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

Encodings

MD5:

da4fdb1d80629671df8c647576d83723

SHA1:

26eb7429f90015ddddaa70e1d6d5077709842eee

Base64:

55OU