Unicode Finder

"栳" U+6833(CJK UNIFIED IDEOGRAPH-6833)

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

Programming

C
\u6833
JavaScript
\u6833
Java
\u6833
Json
\u6833
Python
\u6833
Perl
\x{6833}
PHP
\x{6833}
Ruby
\u{6833}
Rust
\u{6833}
Go
\u6833

Web

CSS
\006833
HtmlDecimal
栳
HtmlHexadecimal
栳
Url
%E6%A0%B3

Code

MD5
7a012184507003f8192d16106a16e434
Sha1
8b4374070f368cf1ada91980706921315a23e0f9
Base64
5qCz

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6833';
console.log(char);  // Output: 栳

Java:

char c = '\u6833';
System.out.println(c);  // Output: 栳

JSON:

{"text": "\u6833"}  // Value: 栳

Python:

char = '\u6833'
print(char)  # Output: 栳

Perl:

my $char = "\x{6833}";
print $char;  # Output: 栳

PHP:

$char = "\x{6833}";
echo $char;  // Output: 栳

Ruby:

char = "\u{6833}"
puts char  # Output: 栳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006833";  /* Display: 栳 */
}

HTML Decimal:

<p>HTML decimal: &#26675;</p>  <!-- Display: 栳 -->

HTML Hexadecimal:

<p>HTML hex: &#x6833;</p>  <!-- Display: 栳 -->

URL Encoding:

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

Encodings

MD5:

7a012184507003f8192d16106a16e434

SHA1:

8b4374070f368cf1ada91980706921315a23e0f9

Base64:

5qCz