Unicode Finder

"芮" U+82AE(CJK UNIFIED IDEOGRAPH-82AE)

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

Programming

C
\u82AE
JavaScript
\u82AE
Java
\u82AE
Json
\u82AE
Python
\u82AE
Perl
\x{82AE}
PHP
\x{82AE}
Ruby
\u{82AE}
Rust
\u{82AE}
Go
\u82AE

Web

CSS
\0082AE
HtmlDecimal
芮
HtmlHexadecimal
芮
Url
%E8%8A%AE

Code

MD5
6c3a036339c52a9f7340a7b1c9bb7dd4
Sha1
58c46f56c0aefacdecac25b3b4cdb46979b2f84d
Base64
6Iqu

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u82AE';
console.log(char);  // Output: 芮

Java:

char c = '\u82AE';
System.out.println(c);  // Output: 芮

JSON:

{"text": "\u82AE"}  // Value: 芮

Python:

char = '\u82AE'
print(char)  # Output: 芮

Perl:

my $char = "\x{82AE}";
print $char;  # Output: 芮

PHP:

$char = "\x{82AE}";
echo $char;  // Output: 芮

Ruby:

char = "\u{82AE}"
puts char  # Output: 芮

Rust:

let c = '\u{82AE}';
println!("{}", c);  // Output: 芮

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0082AE";  /* Display: 芮 */
}

HTML Decimal:

<p>HTML decimal: &#33454;</p>  <!-- Display: 芮 -->

HTML Hexadecimal:

<p>HTML hex: &#x82AE;</p>  <!-- Display: 芮 -->

URL Encoding:

// 芮 URL encoding
https://unicodefinder.com/search.php?query=%E8%8A%AE

Encodings

MD5:

6c3a036339c52a9f7340a7b1c9bb7dd4

SHA1:

58c46f56c0aefacdecac25b3b4cdb46979b2f84d

Base64:

6Iqu