Unicode Finder

"桏" U+684F(CJK UNIFIED IDEOGRAPH-684F)

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

Programming

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

Web

CSS
\00684F
HtmlDecimal
桏
HtmlHexadecimal
桏
Url
%E6%A1%8F

Code

MD5
7fd883179235fa07c6d97b4b49db8976
Sha1
501c1de0fa70d50e21419c87ba8dadc5f391dab3
Base64
5qGP

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u684F';
console.log(char);  // Output: 桏

Java:

char c = '\u684F';
System.out.println(c);  // Output: 桏

JSON:

{"text": "\u684F"}  // Value: 桏

Python:

char = '\u684F'
print(char)  # Output: 桏

Perl:

my $char = "\x{684F}";
print $char;  # Output: 桏

PHP:

$char = "\x{684F}";
echo $char;  // Output: 桏

Ruby:

char = "\u{684F}"
puts char  # Output: 桏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26703;</p>  <!-- Display: 桏 -->

HTML Hexadecimal:

<p>HTML hex: &#x684F;</p>  <!-- Display: 桏 -->

URL Encoding:

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

Encodings

MD5:

7fd883179235fa07c6d97b4b49db8976

SHA1:

501c1de0fa70d50e21419c87ba8dadc5f391dab3

Base64:

5qGP