Unicode Finder

"柨" U+67E8(CJK UNIFIED IDEOGRAPH-67E8)

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

Programming

C
\u67E8
JavaScript
\u67E8
Java
\u67E8
Json
\u67E8
Python
\u67E8
Perl
\x{67E8}
PHP
\x{67E8}
Ruby
\u{67E8}
Rust
\u{67E8}
Go
\u67E8

Web

CSS
\0067E8
HtmlDecimal
柨
HtmlHexadecimal
柨
Url
%E6%9F%A8

Code

MD5
f6af5170b34a017b9ffd69388ef6e149
Sha1
449e959476ae72717e0e2509bfc76b93c93a2674
Base64
5p+o

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u67E8';
console.log(char);  // Output: 柨

Java:

char c = '\u67E8';
System.out.println(c);  // Output: 柨

JSON:

{"text": "\u67E8"}  // Value: 柨

Python:

char = '\u67E8'
print(char)  # Output: 柨

Perl:

my $char = "\x{67E8}";
print $char;  # Output: 柨

PHP:

$char = "\x{67E8}";
echo $char;  // Output: 柨

Ruby:

char = "\u{67E8}"
puts char  # Output: 柨

Rust:

let c = '\u{67E8}';
println!("{}", c);  // Output: 柨

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0067E8";  /* Display: 柨 */
}

HTML Decimal:

<p>HTML decimal: &#26600;</p>  <!-- Display: 柨 -->

HTML Hexadecimal:

<p>HTML hex: &#x67E8;</p>  <!-- Display: 柨 -->

URL Encoding:

// 柨 URL encoding
https://unicodefinder.com/search.php?query=%E6%9F%A8

Encodings

MD5:

f6af5170b34a017b9ffd69388ef6e149

SHA1:

449e959476ae72717e0e2509bfc76b93c93a2674

Base64:

5p+o