Unicode Finder

"璐" U+7490(CJK UNIFIED IDEOGRAPH-7490)

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

Programming

C
\u7490
JavaScript
\u7490
Java
\u7490
Json
\u7490
Python
\u7490
Perl
\x{7490}
PHP
\x{7490}
Ruby
\u{7490}
Rust
\u{7490}
Go
\u7490

Web

CSS
\007490
HtmlDecimal
璐
HtmlHexadecimal
璐
Url
%E7%92%90

Code

MD5
2506859c0192e7199ecd1250d7d27b5c
Sha1
f21df6eff248ec35ed77aa6e5b6704e07cacc6cb
Base64
55KQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7490';
console.log(char);  // Output: 璐

Java:

char c = '\u7490';
System.out.println(c);  // Output: 璐

JSON:

{"text": "\u7490"}  // Value: 璐

Python:

char = '\u7490'
print(char)  # Output: 璐

Perl:

my $char = "\x{7490}";
print $char;  # Output: 璐

PHP:

$char = "\x{7490}";
echo $char;  // Output: 璐

Ruby:

char = "\u{7490}"
puts char  # Output: 璐

Rust:

let c = '\u{7490}';
println!("{}", c);  // Output: 璐

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007490";  /* Display: 璐 */
}

HTML Decimal:

<p>HTML decimal: &#29840;</p>  <!-- Display: 璐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7490;</p>  <!-- Display: 璐 -->

URL Encoding:

// 璐 URL encoding
https://unicodefinder.com/search.php?query=%E7%92%90

Encodings

MD5:

2506859c0192e7199ecd1250d7d27b5c

SHA1:

f21df6eff248ec35ed77aa6e5b6704e07cacc6cb

Base64:

55KQ