Unicode Finder

"候" U+5019(CJK UNIFIED IDEOGRAPH-5019)

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

Programming

C
\u5019
JavaScript
\u5019
Java
\u5019
Json
\u5019
Python
\u5019
Perl
\x{5019}
PHP
\x{5019}
Ruby
\u{5019}
Rust
\u{5019}
Go
\u5019

Web

CSS
\005019
HtmlDecimal
候
HtmlHexadecimal
候
Url
%E5%80%99

Code

MD5
588ef62ed5d978127186313b20590c5f
Sha1
5c225d2da26dee9ff398cd5dcafb0033ef379351
Base64
5YCZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5019';
console.log(char);  // Output: 候

Java:

char c = '\u5019';
System.out.println(c);  // Output: 候

JSON:

{"text": "\u5019"}  // Value: 候

Python:

char = '\u5019'
print(char)  # Output: 候

Perl:

my $char = "\x{5019}";
print $char;  # Output: 候

PHP:

$char = "\x{5019}";
echo $char;  // Output: 候

Ruby:

char = "\u{5019}"
puts char  # Output: 候

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005019";  /* Display: 候 */
}

HTML Decimal:

<p>HTML decimal: &#20505;</p>  <!-- Display: 候 -->

HTML Hexadecimal:

<p>HTML hex: &#x5019;</p>  <!-- Display: 候 -->

URL Encoding:

// 候 URL encoding
https://unicodefinder.com/search.php?query=%E5%80%99

Encodings

MD5:

588ef62ed5d978127186313b20590c5f

SHA1:

5c225d2da26dee9ff398cd5dcafb0033ef379351

Base64:

5YCZ