Unicode Finder

"意" U+610F(CJK UNIFIED IDEOGRAPH-610F)

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

Programming

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

Web

CSS
\00610F
HtmlDecimal
意
HtmlHexadecimal
意
Url
%E6%84%8F

Code

MD5
ace41f4057a37df0219fc22904e4cff1
Sha1
9d197986e049688bd912e455c49e8c263c5daddc
Base64
5oSP

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u610F';
console.log(char);  // Output: 意

Java:

char c = '\u610F';
System.out.println(c);  // Output: 意

JSON:

{"text": "\u610F"}  // Value: 意

Python:

char = '\u610F'
print(char)  # Output: 意

Perl:

my $char = "\x{610F}";
print $char;  # Output: 意

PHP:

$char = "\x{610F}";
echo $char;  // Output: 意

Ruby:

char = "\u{610F}"
puts char  # Output: 意

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24847;</p>  <!-- Display: 意 -->

HTML Hexadecimal:

<p>HTML hex: &#x610F;</p>  <!-- Display: 意 -->

URL Encoding:

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

Encodings

MD5:

ace41f4057a37df0219fc22904e4cff1

SHA1:

9d197986e049688bd912e455c49e8c263c5daddc

Base64:

5oSP