Unicode Finder

"榉" U+6989(CJK UNIFIED IDEOGRAPH-6989)

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

Programming

C
\u6989
JavaScript
\u6989
Java
\u6989
Json
\u6989
Python
\u6989
Perl
\x{6989}
PHP
\x{6989}
Ruby
\u{6989}
Rust
\u{6989}
Go
\u6989

Web

CSS
\006989
HtmlDecimal
榉
HtmlHexadecimal
榉
Url
%E6%A6%89

Code

MD5
59f2a344e220e7e9e50013ed25bfd886
Sha1
57a8e67304a0f562c20884fa7af178dd217ab56f
Base64
5qaJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6989';
console.log(char);  // Output: 榉

Java:

char c = '\u6989';
System.out.println(c);  // Output: 榉

JSON:

{"text": "\u6989"}  // Value: 榉

Python:

char = '\u6989'
print(char)  # Output: 榉

Perl:

my $char = "\x{6989}";
print $char;  # Output: 榉

PHP:

$char = "\x{6989}";
echo $char;  // Output: 榉

Ruby:

char = "\u{6989}"
puts char  # Output: 榉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006989";  /* Display: 榉 */
}

HTML Decimal:

<p>HTML decimal: &#27017;</p>  <!-- Display: 榉 -->

HTML Hexadecimal:

<p>HTML hex: &#x6989;</p>  <!-- Display: 榉 -->

URL Encoding:

// 榉 URL encoding
https://unicodefinder.com/search.php?query=%E6%A6%89

Encodings

MD5:

59f2a344e220e7e9e50013ed25bfd886

SHA1:

57a8e67304a0f562c20884fa7af178dd217ab56f

Base64:

5qaJ