Unicode Finder

"到" U+5230(CJK UNIFIED IDEOGRAPH-5230)

U+5230
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5230

Programming

C
\u5230
JavaScript
\u5230
Java
\u5230
Json
\u5230
Python
\u5230
Perl
\x{5230}
PHP
\x{5230}
Ruby
\u{5230}
Rust
\u{5230}
Go
\u5230

Web

CSS
\005230
HtmlDecimal
到
HtmlHexadecimal
到
Url
%E5%88%B0

Code

MD5
d716f1e8a1f1ba9fb379749856f8551b
Sha1
792bbe6e08f5c43c0c78a7793523f994c4d532ed
Base64
5Yiw

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5230';
console.log(char);  // Output: 到

Java:

char c = '\u5230';
System.out.println(c);  // Output: 到

JSON:

{"text": "\u5230"}  // Value: 到

Python:

char = '\u5230'
print(char)  # Output: 到

Perl:

my $char = "\x{5230}";
print $char;  # Output: 到

PHP:

$char = "\x{5230}";
echo $char;  // Output: 到

Ruby:

char = "\u{5230}"
puts char  # Output: 到

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005230";  /* Display: 到 */
}

HTML Decimal:

<p>HTML decimal: &#21040;</p>  <!-- Display: 到 -->

HTML Hexadecimal:

<p>HTML hex: &#x5230;</p>  <!-- Display: 到 -->

URL Encoding:

// 到 URL encoding
https://unicodefinder.com/search.php?query=%E5%88%B0

Encodings

MD5:

d716f1e8a1f1ba9fb379749856f8551b

SHA1:

792bbe6e08f5c43c0c78a7793523f994c4d532ed

Base64:

5Yiw