Unicode Finder

"桒" U+6852(CJK UNIFIED IDEOGRAPH-6852)

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

Programming

C
\u6852
JavaScript
\u6852
Java
\u6852
Json
\u6852
Python
\u6852
Perl
\x{6852}
PHP
\x{6852}
Ruby
\u{6852}
Rust
\u{6852}
Go
\u6852

Web

CSS
\006852
HtmlDecimal
桒
HtmlHexadecimal
桒
Url
%E6%A1%92

Code

MD5
550f306d19dc7185c252dbe6e0cf0e3d
Sha1
6ed03440b03afecbca6f48a6027c9f5df1bbee84
Base64
5qGS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6852';
console.log(char);  // Output: 桒

Java:

char c = '\u6852';
System.out.println(c);  // Output: 桒

JSON:

{"text": "\u6852"}  // Value: 桒

Python:

char = '\u6852'
print(char)  # Output: 桒

Perl:

my $char = "\x{6852}";
print $char;  # Output: 桒

PHP:

$char = "\x{6852}";
echo $char;  // Output: 桒

Ruby:

char = "\u{6852}"
puts char  # Output: 桒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006852";  /* Display: 桒 */
}

HTML Decimal:

<p>HTML decimal: &#26706;</p>  <!-- Display: 桒 -->

HTML Hexadecimal:

<p>HTML hex: &#x6852;</p>  <!-- Display: 桒 -->

URL Encoding:

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

Encodings

MD5:

550f306d19dc7185c252dbe6e0cf0e3d

SHA1:

6ed03440b03afecbca6f48a6027c9f5df1bbee84

Base64:

5qGS