Unicode Finder

"醕" U+9195(CJK UNIFIED IDEOGRAPH-9195)

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

Programming

C
\u9195
JavaScript
\u9195
Java
\u9195
Json
\u9195
Python
\u9195
Perl
\x{9195}
PHP
\x{9195}
Ruby
\u{9195}
Rust
\u{9195}
Go
\u9195

Web

CSS
\009195
HtmlDecimal
醕
HtmlHexadecimal
醕
Url
%E9%86%95

Code

MD5
e9f422d69909039373a5a0d8348e9988
Sha1
7ee785d4fcc7ff1389e6c43650707c075aa619ea
Base64
6YaV

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9195';
console.log(char);  // Output: 醕

Java:

char c = '\u9195';
System.out.println(c);  // Output: 醕

JSON:

{"text": "\u9195"}  // Value: 醕

Python:

char = '\u9195'
print(char)  # Output: 醕

Perl:

my $char = "\x{9195}";
print $char;  # Output: 醕

PHP:

$char = "\x{9195}";
echo $char;  // Output: 醕

Ruby:

char = "\u{9195}"
puts char  # Output: 醕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009195";  /* Display: 醕 */
}

HTML Decimal:

<p>HTML decimal: &#37269;</p>  <!-- Display: 醕 -->

HTML Hexadecimal:

<p>HTML hex: &#x9195;</p>  <!-- Display: 醕 -->

URL Encoding:

// 醕 URL encoding
https://unicodefinder.com/search.php?query=%E9%86%95

Encodings

MD5:

e9f422d69909039373a5a0d8348e9988

SHA1:

7ee785d4fcc7ff1389e6c43650707c075aa619ea

Base64:

6YaV