Unicode Finder

"栰" U+6830(CJK UNIFIED IDEOGRAPH-6830)

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

Programming

C
\u6830
JavaScript
\u6830
Java
\u6830
Json
\u6830
Python
\u6830
Perl
\x{6830}
PHP
\x{6830}
Ruby
\u{6830}
Rust
\u{6830}
Go
\u6830

Web

CSS
\006830
HtmlDecimal
栰
HtmlHexadecimal
栰
Url
%E6%A0%B0

Code

MD5
1c4bce82153edac8cfe72ae0ad96fc95
Sha1
a24954413e4cbdef52a310dc2944d8fa8d95a700
Base64
5qCw

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6830';
console.log(char);  // Output: 栰

Java:

char c = '\u6830';
System.out.println(c);  // Output: 栰

JSON:

{"text": "\u6830"}  // Value: 栰

Python:

char = '\u6830'
print(char)  # Output: 栰

Perl:

my $char = "\x{6830}";
print $char;  # Output: 栰

PHP:

$char = "\x{6830}";
echo $char;  // Output: 栰

Ruby:

char = "\u{6830}"
puts char  # Output: 栰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006830";  /* Display: 栰 */
}

HTML Decimal:

<p>HTML decimal: &#26672;</p>  <!-- Display: 栰 -->

HTML Hexadecimal:

<p>HTML hex: &#x6830;</p>  <!-- Display: 栰 -->

URL Encoding:

// 栰 URL encoding
https://unicodefinder.com/search.php?query=%E6%A0%B0

Encodings

MD5:

1c4bce82153edac8cfe72ae0ad96fc95

SHA1:

a24954413e4cbdef52a310dc2944d8fa8d95a700

Base64:

5qCw