Unicode Finder

"栩" U+6829(CJK UNIFIED IDEOGRAPH-6829)

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

Programming

C
\u6829
JavaScript
\u6829
Java
\u6829
Json
\u6829
Python
\u6829
Perl
\x{6829}
PHP
\x{6829}
Ruby
\u{6829}
Rust
\u{6829}
Go
\u6829

Web

CSS
\006829
HtmlDecimal
栩
HtmlHexadecimal
栩
Url
%E6%A0%A9

Code

MD5
751daeda700a1e8f70728650a7210ee7
Sha1
f9014e0095bd508c0d4046762fa065a65289c12d
Base64
5qCp

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6829';
console.log(char);  // Output: 栩

Java:

char c = '\u6829';
System.out.println(c);  // Output: 栩

JSON:

{"text": "\u6829"}  // Value: 栩

Python:

char = '\u6829'
print(char)  # Output: 栩

Perl:

my $char = "\x{6829}";
print $char;  # Output: 栩

PHP:

$char = "\x{6829}";
echo $char;  // Output: 栩

Ruby:

char = "\u{6829}"
puts char  # Output: 栩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006829";  /* Display: 栩 */
}

HTML Decimal:

<p>HTML decimal: &#26665;</p>  <!-- Display: 栩 -->

HTML Hexadecimal:

<p>HTML hex: &#x6829;</p>  <!-- Display: 栩 -->

URL Encoding:

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

Encodings

MD5:

751daeda700a1e8f70728650a7210ee7

SHA1:

f9014e0095bd508c0d4046762fa065a65289c12d

Base64:

5qCp