Unicode Finder

"榕" U+6995(CJK UNIFIED IDEOGRAPH-6995)

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

Programming

C
\u6995
JavaScript
\u6995
Java
\u6995
Json
\u6995
Python
\u6995
Perl
\x{6995}
PHP
\x{6995}
Ruby
\u{6995}
Rust
\u{6995}
Go
\u6995

Web

CSS
\006995
HtmlDecimal
榕
HtmlHexadecimal
榕
Url
%E6%A6%95

Code

MD5
83ccc38ee996dd7a0c4a742adf8080aa
Sha1
c8e46fe1d1d6a83b2d1432bd34d61b7a35ca9341
Base64
5qaV

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6995';
console.log(char);  // Output: 榕

Java:

char c = '\u6995';
System.out.println(c);  // Output: 榕

JSON:

{"text": "\u6995"}  // Value: 榕

Python:

char = '\u6995'
print(char)  # Output: 榕

Perl:

my $char = "\x{6995}";
print $char;  # Output: 榕

PHP:

$char = "\x{6995}";
echo $char;  // Output: 榕

Ruby:

char = "\u{6995}"
puts char  # Output: 榕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006995";  /* Display: 榕 */
}

HTML Decimal:

<p>HTML decimal: &#27029;</p>  <!-- Display: 榕 -->

HTML Hexadecimal:

<p>HTML hex: &#x6995;</p>  <!-- Display: 榕 -->

URL Encoding:

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

Encodings

MD5:

83ccc38ee996dd7a0c4a742adf8080aa

SHA1:

c8e46fe1d1d6a83b2d1432bd34d61b7a35ca9341

Base64:

5qaV