Unicode Finder

"怟" U+601F(CJK UNIFIED IDEOGRAPH-601F)

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

Programming

C
\u601F
JavaScript
\u601F
Java
\u601F
Json
\u601F
Python
\u601F
Perl
\x{601F}
PHP
\x{601F}
Ruby
\u{601F}
Rust
\u{601F}
Go
\u601F

Web

CSS
\00601F
HtmlDecimal
怟
HtmlHexadecimal
怟
Url
%E6%80%9F

Code

MD5
79c10a73b9250a6d2a0fded18ddc3279
Sha1
05568714d140496a26ada63cdb02b0f8cb30c817
Base64
5oCf

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u601F';
console.log(char);  // Output: 怟

Java:

char c = '\u601F';
System.out.println(c);  // Output: 怟

JSON:

{"text": "\u601F"}  // Value: 怟

Python:

char = '\u601F'
print(char)  # Output: 怟

Perl:

my $char = "\x{601F}";
print $char;  # Output: 怟

PHP:

$char = "\x{601F}";
echo $char;  // Output: 怟

Ruby:

char = "\u{601F}"
puts char  # Output: 怟

Rust:

let c = '\u{601F}';
println!("{}", c);  // Output: 怟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00601F";  /* Display: 怟 */
}

HTML Decimal:

<p>HTML decimal: &#24607;</p>  <!-- Display: 怟 -->

HTML Hexadecimal:

<p>HTML hex: &#x601F;</p>  <!-- Display: 怟 -->

URL Encoding:

// 怟 URL encoding
https://unicodefinder.com/search.php?query=%E6%80%9F

Encodings

MD5:

79c10a73b9250a6d2a0fded18ddc3279

SHA1:

05568714d140496a26ada63cdb02b0f8cb30c817

Base64:

5oCf