Unicode Finder

"桘" U+6858(CJK UNIFIED IDEOGRAPH-6858)

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

Programming

C
\u6858
JavaScript
\u6858
Java
\u6858
Json
\u6858
Python
\u6858
Perl
\x{6858}
PHP
\x{6858}
Ruby
\u{6858}
Rust
\u{6858}
Go
\u6858

Web

CSS
\006858
HtmlDecimal
桘
HtmlHexadecimal
桘
Url
%E6%A1%98

Code

MD5
fa4dfecf8dccb47709bd16297d105343
Sha1
a8ee6ace9890662bd5f214c2a8ecb24c696b4fd4
Base64
5qGY

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6858';
console.log(char);  // Output: 桘

Java:

char c = '\u6858';
System.out.println(c);  // Output: 桘

JSON:

{"text": "\u6858"}  // Value: 桘

Python:

char = '\u6858'
print(char)  # Output: 桘

Perl:

my $char = "\x{6858}";
print $char;  # Output: 桘

PHP:

$char = "\x{6858}";
echo $char;  // Output: 桘

Ruby:

char = "\u{6858}"
puts char  # Output: 桘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006858";  /* Display: 桘 */
}

HTML Decimal:

<p>HTML decimal: &#26712;</p>  <!-- Display: 桘 -->

HTML Hexadecimal:

<p>HTML hex: &#x6858;</p>  <!-- Display: 桘 -->

URL Encoding:

// 桘 URL encoding
https://unicodefinder.com/search.php?query=%E6%A1%98

Encodings

MD5:

fa4dfecf8dccb47709bd16297d105343

SHA1:

a8ee6ace9890662bd5f214c2a8ecb24c696b4fd4

Base64:

5qGY