Unicode Finder

"怙" U+6019(CJK UNIFIED IDEOGRAPH-6019)

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

Programming

C
\u6019
JavaScript
\u6019
Java
\u6019
Json
\u6019
Python
\u6019
Perl
\x{6019}
PHP
\x{6019}
Ruby
\u{6019}
Rust
\u{6019}
Go
\u6019

Web

CSS
\006019
HtmlDecimal
怙
HtmlHexadecimal
怙
Url
%E6%80%99

Code

MD5
ab5e4a7f5d0dd41dde6f5819c86c6a0c
Sha1
3d1a8457425f36ead312fcdedde8f159ea2e8dc7
Base64
5oCZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6019';
console.log(char);  // Output: 怙

Java:

char c = '\u6019';
System.out.println(c);  // Output: 怙

JSON:

{"text": "\u6019"}  // Value: 怙

Python:

char = '\u6019'
print(char)  # Output: 怙

Perl:

my $char = "\x{6019}";
print $char;  # Output: 怙

PHP:

$char = "\x{6019}";
echo $char;  // Output: 怙

Ruby:

char = "\u{6019}"
puts char  # Output: 怙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006019";  /* Display: 怙 */
}

HTML Decimal:

<p>HTML decimal: &#24601;</p>  <!-- Display: 怙 -->

HTML Hexadecimal:

<p>HTML hex: &#x6019;</p>  <!-- Display: 怙 -->

URL Encoding:

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

Encodings

MD5:

ab5e4a7f5d0dd41dde6f5819c86c6a0c

SHA1:

3d1a8457425f36ead312fcdedde8f159ea2e8dc7

Base64:

5oCZ