Unicode Finder

"光" U+5149(CJK UNIFIED IDEOGRAPH-5149)

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

Programming

C
\u5149
JavaScript
\u5149
Java
\u5149
Json
\u5149
Python
\u5149
Perl
\x{5149}
PHP
\x{5149}
Ruby
\u{5149}
Rust
\u{5149}
Go
\u5149

Web

CSS
\005149
HtmlDecimal
光
HtmlHexadecimal
光
Url
%E5%85%89

Code

MD5
4af845a4cd9b0c02721a8226c08d20cd
Sha1
5ae567c880da47c96752fc4bc5713e7b858acb83
Base64
5YWJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5149';
console.log(char);  // Output: 光

Java:

char c = '\u5149';
System.out.println(c);  // Output: 光

JSON:

{"text": "\u5149"}  // Value: 光

Python:

char = '\u5149'
print(char)  # Output: 光

Perl:

my $char = "\x{5149}";
print $char;  # Output: 光

PHP:

$char = "\x{5149}";
echo $char;  // Output: 光

Ruby:

char = "\u{5149}"
puts char  # Output: 光

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005149";  /* Display: 光 */
}

HTML Decimal:

<p>HTML decimal: &#20809;</p>  <!-- Display: 光 -->

HTML Hexadecimal:

<p>HTML hex: &#x5149;</p>  <!-- Display: 光 -->

URL Encoding:

// 光 URL encoding
https://unicodefinder.com/search.php?query=%E5%85%89

Encodings

MD5:

4af845a4cd9b0c02721a8226c08d20cd

SHA1:

5ae567c880da47c96752fc4bc5713e7b858acb83

Base64:

5YWJ