Unicode Finder

"怏" U+600F(CJK UNIFIED IDEOGRAPH-600F)

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

Programming

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

Web

CSS
\00600F
HtmlDecimal
怏
HtmlHexadecimal
怏
Url
%E6%80%8F

Code

MD5
7baa1ed7b1be905ee2014bb57d7d3074
Sha1
11f8588b9c4de067aac7877075d1e30316e278f8
Base64
5oCP

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u600F';
console.log(char);  // Output: 怏

Java:

char c = '\u600F';
System.out.println(c);  // Output: 怏

JSON:

{"text": "\u600F"}  // Value: 怏

Python:

char = '\u600F'
print(char)  # Output: 怏

Perl:

my $char = "\x{600F}";
print $char;  # Output: 怏

PHP:

$char = "\x{600F}";
echo $char;  // Output: 怏

Ruby:

char = "\u{600F}"
puts char  # Output: 怏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24591;</p>  <!-- Display: 怏 -->

HTML Hexadecimal:

<p>HTML hex: &#x600F;</p>  <!-- Display: 怏 -->

URL Encoding:

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

Encodings

MD5:

7baa1ed7b1be905ee2014bb57d7d3074

SHA1:

11f8588b9c4de067aac7877075d1e30316e278f8

Base64:

5oCP